diff options
author | Lalith Rajendran <lalithkraj@google.com> | 2022-08-18 21:40:49 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-10-26 12:34:29 +0200 |
commit | 4a967fe8b0438c73ec738dfa8a4dbb56b6523217 (patch) | |
tree | b86215ed50d8ea3d479cef1a3e12dddb7ff17aa9 /fs | |
parent | 533c60a0b97cee5daab376933f486207e6680fb7 (diff) | |
download | linux-stable-4a967fe8b0438c73ec738dfa8a4dbb56b6523217.tar.gz linux-stable-4a967fe8b0438c73ec738dfa8a4dbb56b6523217.tar.bz2 linux-stable-4a967fe8b0438c73ec738dfa8a4dbb56b6523217.zip |
ext4: make ext4_lazyinit_thread freezable
commit 3b575495ab8dbb4dbe85b4ac7f991693c3668ff5 upstream.
ext4_lazyinit_thread is not set freezable. Hence when the thread calls
try_to_freeze it doesn't freeze during suspend and continues to send
requests to the storage during suspend, resulting in suspend failures.
Cc: stable@kernel.org
Signed-off-by: Lalith Rajendran <lalithkraj@google.com>
Link: https://lore.kernel.org/r/20220818214049.1519544-1-lalithkraj@google.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index c3b0909fc824..823f35ed95fa 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -3377,6 +3377,7 @@ static int ext4_lazyinit_thread(void *arg) unsigned long next_wakeup, cur; BUG_ON(NULL == eli); + set_freezable(); cont_thread: while (true) { |