From: Chao Yu Date: Sun, 4 Jan 2026 02:07:24 +0000 (+0800) Subject: f2fs: clean up w/ __f2fs_schedule_timeout() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5da276ae6abe95767c3e1eb72f39e0ef8df7d22;p=thirdparty%2Fkernel%2Flinux.git f2fs: clean up w/ __f2fs_schedule_timeout() No logic changes. Signed-off-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index dc9f834bbe0d..1d7ad3b860e0 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -4988,8 +4988,7 @@ static inline void f2fs_io_schedule_timeout_killable(long timeout) while (timeout) { if (fatal_signal_pending(current)) return; - set_current_state(TASK_UNINTERRUPTIBLE); - io_schedule_timeout(DEFAULT_SCHEDULE_TIMEOUT); + __f2fs_schedule_timeout(DEFAULT_SCHEDULE_TIMEOUT, true); if (timeout <= DEFAULT_SCHEDULE_TIMEOUT) return; timeout -= DEFAULT_SCHEDULE_TIMEOUT;