Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

f2fs: clean up w/ __f2fs_schedule_timeout()

No logic changes.

Signed-off-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>

authored by

Chao Yu and committed by
Jaegeuk Kim
b5da276a 67972c2b

+1 -2
+1 -2
fs/f2fs/f2fs.h
··· 4988 4988 while (timeout) { 4989 4989 if (fatal_signal_pending(current)) 4990 4990 return; 4991 - set_current_state(TASK_UNINTERRUPTIBLE); 4992 - io_schedule_timeout(DEFAULT_SCHEDULE_TIMEOUT); 4991 + __f2fs_schedule_timeout(DEFAULT_SCHEDULE_TIMEOUT, true); 4993 4992 if (timeout <= DEFAULT_SCHEDULE_TIMEOUT) 4994 4993 return; 4995 4994 timeout -= DEFAULT_SCHEDULE_TIMEOUT;