This is a note to let you know that I've just added the patch titled ext4: make ext4_lazyinit_thread freezable to the 6.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ext4-make-ext4_lazyinit_thread-freezable.patch and it can be found in the queue-6.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 3b575495ab8dbb4dbe85b4ac7f991693c3668ff5 Mon Sep 17 00:00:00 2001 From: Lalith Rajendran <lalithkraj@xxxxxxxxxx> Date: Thu, 18 Aug 2022 21:40:49 +0000 Subject: ext4: make ext4_lazyinit_thread freezable From: Lalith Rajendran <lalithkraj@xxxxxxxxxx> 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@xxxxxxxxxx Signed-off-by: Lalith Rajendran <lalithkraj@xxxxxxxxxx> Link: https://lore.kernel.org/r/20220818214049.1519544-1-lalithkraj@xxxxxxxxxx Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/ext4/super.c | 1 + 1 file changed, 1 insertion(+) --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -3767,6 +3767,7 @@ static int ext4_lazyinit_thread(void *ar unsigned long next_wakeup, cur; BUG_ON(NULL == eli); + set_freezable(); cont_thread: while (true) { Patches currently in stable-queue which might be from lalithkraj@xxxxxxxxxx are queue-6.0/ext4-make-ext4_lazyinit_thread-freezable.patch