Skip to content

Commit fadb2fb

Browse files
chaseyuJaegeuk Kim
authored andcommitted
f2fs: fix to avoid race condition when updating sbi flag
Making updating of sbi flag atomic by using {test,set,clear}_bit, otherwise in concurrency scenario, the flag could be updated incorrectly. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
1 parent 9e1e6df commit fadb2fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/f2fs/f2fs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ struct f2fs_sb_info {
777777
struct proc_dir_entry *s_proc; /* proc entry */
778778
struct f2fs_super_block *raw_super; /* raw super block pointer */
779779
int valid_super_block; /* valid super block no */
780-
int s_flag; /* flags for sbi */
780+
unsigned long s_flag; /* flags for sbi */
781781

782782
#ifdef CONFIG_F2FS_FS_ENCRYPTION
783783
u8 key_prefix[F2FS_KEY_DESC_PREFIX_SIZE];
@@ -1046,17 +1046,17 @@ static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
10461046

10471047
static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
10481048
{
1049-
return sbi->s_flag & (0x01 << type);
1049+
return test_bit(type, &sbi->s_flag);
10501050
}
10511051

10521052
static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
10531053
{
1054-
sbi->s_flag |= (0x01 << type);
1054+
set_bit(type, &sbi->s_flag);
10551055
}
10561056

10571057
static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
10581058
{
1059-
sbi->s_flag &= ~(0x01 << type);
1059+
clear_bit(type, &sbi->s_flag);
10601060
}
10611061

10621062
static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)

0 commit comments

Comments
 (0)