diff options
author | Chao Yu <yuchao0@huawei.com> | 2018-10-24 12:37:26 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-11-27 00:53:55 +0100 |
commit | 2c70c5e3874e8cf2f39f4ce4e2b832f4380a0c1b (patch) | |
tree | edc61ac95eca64a9903e8926f790954e147902b4 /fs/f2fs/f2fs.h | |
parent | f2fs: clean up f2fs_sb_has_##feature_name (diff) | |
download | linux-2c70c5e3874e8cf2f39f4ce4e2b832f4380a0c1b.tar.xz linux-2c70c5e3874e8cf2f39f4ce4e2b832f4380a0c1b.zip |
f2fs: introduce __is_large_section() for cleanup
Introduce a wrapper __is_large_section() to clean up codes.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 0909a7087d0f..c50c3aa8176c 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -2762,6 +2762,8 @@ static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi, spin_unlock(&sbi->iostat_lock); } +#define __is_large_section(sbi) ((sbi)->segs_per_sec > 1) + #define __is_meta_io(fio) (PAGE_TYPE_OF_BIO(fio->type) == META && \ (!is_read_io(fio->op) || fio->is_meta)) |