Freezer: Fix JFFS2 garbage collector freezing issue (rev. 2)
Fix breakage caused by commit d5d8c5976d6adeddb8208c240460411e2198b393 "freezer: do not send signals to kernel threads" in jffs2_garbage_collect_thread() that assumed it would be sent signals by the freezer. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Pete MacKay <armlinux@architechnical.net> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
561d9a9694
commit
e136e769d4
@ -105,7 +105,7 @@ static int jffs2_garbage_collect_thread(void *_c)
|
||||
|
||||
/* Put_super will send a SIGKILL and then wait on the sem.
|
||||
*/
|
||||
while (signal_pending(current)) {
|
||||
while (signal_pending(current) || freezing(current)) {
|
||||
siginfo_t info;
|
||||
unsigned long signr;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user