diff options
author | huangjianan@oppo.com <huangjianan@oppo.com> | 2021-02-27 20:02:29 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2021-03-12 13:16:43 -0800 |
commit | ebc29b62a166e9116cd8159e9798044d02130279 (patch) | |
tree | a457940c7e05d5a7c9b78fd37b4abf32f1727a26 /fs/f2fs/data.c | |
parent | 4260c4067fbba55a90037fe3ee32eff087749f83 (diff) | |
download | linux-stable-ebc29b62a166e9116cd8159e9798044d02130279.tar.gz linux-stable-ebc29b62a166e9116cd8159e9798044d02130279.tar.bz2 linux-stable-ebc29b62a166e9116cd8159e9798044d02130279.zip |
f2fs: remove unnecessary IS_SWAPFILE check
Now swapfile in f2fs directly submit IO to blockdev according to
swapfile extents reported by f2fs when swapon, therefore there is
no need to check IS_SWAPFILE when exec filesystem operation.
Signed-off-by: Huang Jianan <huangjianan@oppo.com>
Signed-off-by: Guo Weichao <guoweichao@oppo.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r-- | fs/f2fs/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 7c95818639a6..1531463768bf 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -1722,7 +1722,7 @@ static int get_data_block_dio_write(struct inode *inode, sector_t iblock, return __get_data_block(inode, iblock, bh_result, create, F2FS_GET_BLOCK_DIO, NULL, f2fs_rw_hint_to_seg_type(inode->i_write_hint), - IS_SWAPFILE(inode) ? false : true); + true); } static int get_data_block_dio(struct inode *inode, sector_t iblock, |