diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-09-10 22:05:50 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 17:10:12 -0400 |
commit | da187cacb8a59e668ce716214865612ae3921e91 (patch) | |
tree | ef9d61306adae75d49de8d6e497eea74f531a417 /fs/bcachefs/quota.c | |
parent | c7afec9bd63dc00047c35f9b747aa2be505533e6 (diff) | |
download | lwn-da187cacb8a59e668ce716214865612ae3921e91.tar.gz lwn-da187cacb8a59e668ce716214865612ae3921e91.zip |
bcachefs: Kill missing inode warnings in bch2_quota_read()
bch2_quota_read(), when scanning for inodes, may attempt to look up
inodes that have been deleted in the main subvolume - this is not an
error.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/quota.c')
-rw-r--r-- | fs/bcachefs/quota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/quota.c b/fs/bcachefs/quota.c index ca99772aedc6..60d27f726519 100644 --- a/fs/bcachefs/quota.c +++ b/fs/bcachefs/quota.c @@ -572,7 +572,7 @@ static int bch2_fs_quota_read_inode(struct btree_trans *trans, if (!s_t.master_subvol) goto advance; - ret = bch2_inode_find_by_inum_trans(trans, + ret = bch2_inode_find_by_inum_nowarn_trans(trans, (subvol_inum) { le32_to_cpu(s_t.master_subvol), k.k->p.offset, |