diff options
author | Jan Kara <jack@suse.cz> | 2024-02-06 17:08:19 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2024-02-08 14:04:59 +0300 |
commit | ccb49011bb2ebfd66164dbf68c5bff48917bb5ef (patch) | |
tree | 28798f5cf34d1892d0957e4cbffe2b530d46235e /fs/reiserfs/reiserfs.h | |
parent | 179b8c97ebf63429589f5afeba59a181fe70603e (diff) | |
download | linux-ccb49011bb2ebfd66164dbf68c5bff48917bb5ef.tar.xz |
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/reiserfs/reiserfs.h')
-rw-r--r-- | fs/reiserfs/reiserfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/reiserfs.h b/fs/reiserfs/reiserfs.h index 725667880e62..b65549164590 100644 --- a/fs/reiserfs/reiserfs.h +++ b/fs/reiserfs/reiserfs.h @@ -97,7 +97,7 @@ struct reiserfs_inode_info { struct rw_semaphore i_xattr_sem; #endif #ifdef CONFIG_QUOTA - struct dquot *i_dquot[MAXQUOTAS]; + struct dquot __rcu *i_dquot[MAXQUOTAS]; #endif struct inode vfs_inode; |