mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
bcachefs: Fix bch2_inode_insert() race path for tmpfiles
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
29f1c1ae6d
commit
b02f973e67
|
|
@ -194,6 +194,12 @@ static struct bch_inode_info *bch2_inode_insert(struct bch_fs *c, struct bch_ino
|
|||
* discard_new_inode() expects it to be set...
|
||||
*/
|
||||
inode->v.i_flags |= I_NEW;
|
||||
/*
|
||||
* We don't want bch2_evict_inode() to delete the inode on disk,
|
||||
* we just raced and had another inode in cache. Normally new
|
||||
* inodes don't have nlink == 0 - except tmpfiles do...
|
||||
*/
|
||||
set_nlink(&inode->v, 1);
|
||||
discard_new_inode(&inode->v);
|
||||
inode = old;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user