Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fadb2fb8 authored by Chao Yu's avatar Chao Yu Committed by Jaegeuk Kim
Browse files

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: default avatarChao Yu <yuchao0@huawei.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 9e1e6df4
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -777,7 +777,7 @@ struct f2fs_sb_info {
	struct proc_dir_entry *s_proc;		/* proc entry */
	struct proc_dir_entry *s_proc;		/* proc entry */
	struct f2fs_super_block *raw_super;	/* raw super block pointer */
	struct f2fs_super_block *raw_super;	/* raw super block pointer */
	int valid_super_block;			/* valid super block no */
	int valid_super_block;			/* valid super block no */
	int s_flag;				/* flags for sbi */
	unsigned long s_flag;				/* flags for sbi */


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


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


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


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


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