aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/f2fs/segment.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 5e7e311758f8..7fb7dd3d1e74 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1501,8 +1501,12 @@ void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
struct curseg_info *curseg;
bool direct_io = (type == CURSEG_DIRECT_IO);
- type = direct_io ? CURSEG_WARM_DATA : type;
-
+ if (direct_io) {
+ if (sbi->active_logs <= 4)
+ type = CURSEG_HOT_DATA;
+ else
+ type = CURSEG_WARM_DATA;
+ }
curseg = CURSEG_I(sbi, type);
mutex_lock(&curseg->curseg_mutex);