35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From db6b114bd5c8426f9efa74209e987f3ff2a7bf5f Mon Sep 17 00:00:00 2001
|
|
From: Youling Tang <tangyouling@kylinos.cn>
|
|
Date: Fri, 27 Sep 2024 16:40:42 +0800
|
|
Subject: [PATCH 072/233] bcachefs: Remove redundant initialization in
|
|
bch2_vfs_inode_init()
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
`inode->v.i_ino` has been initialized to `inum.inum`. If `inum.inum` and
|
|
`bi->bi_inum` are not equal, BUG_ON() is triggered in
|
|
bch2_inode_update_after_write().
|
|
|
|
Signed-off-by: Youling Tang <tangyouling@kylinos.cn>
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/fs.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/fs/bcachefs/fs.c b/fs/bcachefs/fs.c
|
|
index 7a269dbcf44b..f852dbf30aa2 100644
|
|
--- a/fs/bcachefs/fs.c
|
|
+++ b/fs/bcachefs/fs.c
|
|
@@ -1752,7 +1752,6 @@ static void bch2_vfs_inode_init(struct btree_trans *trans,
|
|
bch2_inode_update_after_write(trans, inode, bi, ~0);
|
|
|
|
inode->v.i_blocks = bi->bi_sectors;
|
|
- inode->v.i_ino = bi->bi_inum;
|
|
inode->v.i_rdev = bi->bi_dev;
|
|
inode->v.i_generation = bi->bi_generation;
|
|
inode->v.i_size = bi->bi_size;
|
|
--
|
|
2.45.2
|
|
|