All of lore.kernel.org
 help / color / mirror / Atom feed
* [f2fs-dev] [PATCH 1/3] f2fs: remove unnecessary IS_SWAPFILE check
@ 2021-02-27 12:02 ` Huang Jianan
  0 siblings, 0 replies; 16+ messages in thread
From: Huang Jianan via Linux-f2fs-devel @ 2021-02-27 12:02 UTC (permalink / raw)
  To: linux-f2fs-devel; +Cc: linux-kernel, zhangshiming

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>
---
 fs/f2fs/data.c | 2 +-
 fs/f2fs/f2fs.h | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index b9721c8f116c..a1498a1a345c 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -1723,7 +1723,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,
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
index cccdfb1a40ab..3f65cfe11a0f 100644
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -4176,8 +4176,7 @@ static inline bool f2fs_force_buffered_io(struct inode *inode,
 		if (F2FS_IO_ALIGNED(sbi))
 			return true;
 	}
-	if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED) &&
-					!IS_SWAPFILE(inode))
+	if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED))
 		return true;
 
 	return false;
-- 
2.25.1



_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2021-03-02  8:12 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-27 12:02 [f2fs-dev] [PATCH 1/3] f2fs: remove unnecessary IS_SWAPFILE check Huang Jianan via Linux-f2fs-devel
2021-02-27 12:02 ` Huang Jianan
2021-02-27 12:02 ` [f2fs-dev] [PATCH 2/3] f2fs: fix last_lblock check in check_swap_activate_fast Huang Jianan via Linux-f2fs-devel
2021-02-27 12:02   ` Huang Jianan
2021-03-01  2:01   ` [f2fs-dev] " Chao Yu
2021-03-01  2:01     ` Chao Yu
2021-02-27 12:02 ` [f2fs-dev] [PATCH 3/3] f2fs: check if swapfile is section-alligned Huang Jianan via Linux-f2fs-devel
2021-02-27 12:02   ` Huang Jianan
2021-03-01  2:41   ` [f2fs-dev] " Chao Yu
2021-03-01  2:41     ` Chao Yu
2021-03-02  4:20     ` Jaegeuk Kim
2021-03-02  4:20       ` Jaegeuk Kim
2021-03-02  4:25       ` Jaegeuk Kim
2021-03-02  4:25         ` Jaegeuk Kim
2021-03-01  1:58 ` [f2fs-dev] [PATCH 1/3] f2fs: remove unnecessary IS_SWAPFILE check Chao Yu
2021-03-01  1:58   ` Chao Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.