summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/checkpoint.c
diff options
context:
space:
mode:
authorYunlei He2016-02-23 05:07:56 +0100
committerJaegeuk Kim2016-02-23 19:10:09 +0100
commit0ff21646f2a5c6ff77acc51eb3df4235af39be46 (patch)
tree3033f063b1cc1b68f4c607edc68b5055b6e956bf /fs/f2fs/checkpoint.c
parentf2fs: trace old block address for CoWed page (diff)
downloadkernel-qcow2-linux-0ff21646f2a5c6ff77acc51eb3df4235af39be46.tar.gz
kernel-qcow2-linux-0ff21646f2a5c6ff77acc51eb3df4235af39be46.tar.xz
kernel-qcow2-linux-0ff21646f2a5c6ff77acc51eb3df4235af39be46.zip
f2fs: avoid hungtask problem caused by losing wake_up
The D state of wait_on_all_pages_writeback should be waken by function f2fs_write_end_io when all writeback pages have been succesfully written to device. It's possible that wake_up comes between get_pages and io_schedule. Maybe in this case it will lost wake_up and still in D state even if all pages have been write back to device, and finally, the whole system will be into the hungtask state. if (!get_pages(sbi, F2FS_WRITEBACK)) break; <--------- wake_up io_schedule(); Signed-off-by: Yunlei He <heyunlei@huawei.com> Signed-off-by: Biao He <hebiao6@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r--fs/f2fs/checkpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index 2bac8a165488..f55355d7d6b1 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -920,7 +920,7 @@ static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
if (!get_pages(sbi, F2FS_WRITEBACK))
break;
- io_schedule();
+ io_schedule_timeout(5*HZ);
}
finish_wait(&sbi->cp_wait, &wait);
}