diff options
author | Jan Kara <jack@suse.cz> | 2024-02-06 15:08:19 +0100 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2024-02-08 12:04:59 +0100 |
commit | ccb49011bb2ebfd66164dbf68c5bff48917bb5ef (patch) | |
tree | 28798f5cf34d1892d0957e4cbffe2b530d46235e /fs/f2fs/super.c | |
parent | quota: Fix rcu annotations of inode dquot pointers (diff) | |
download | linux-ccb49011bb2ebfd66164dbf68c5bff48917bb5ef.tar.xz linux-ccb49011bb2ebfd66164dbf68c5bff48917bb5ef.zip |
quota: Properly annotate i_dquot arrays with __rcu
Dquots pointed to from i_dquot arrays in inodes are protected by
dquot_srcu. Annotate them as such and change .get_dquots callback to
return properly annotated pointer to make sparse happy.
Fixes: b9ba6f94b238 ("quota: remove dqptr_sem")
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index d45ab0992ae5..18cc4829f7e8 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -2768,7 +2768,7 @@ int f2fs_dquot_initialize(struct inode *inode) return dquot_initialize(inode); } -static struct dquot **f2fs_get_dquots(struct inode *inode) +static struct dquot __rcu **f2fs_get_dquots(struct inode *inode) { return F2FS_I(inode)->i_dquot; } |