aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2007-12-04 01:11:09 +0100
committerLen Brown <len.brown@intel.com>2007-12-04 01:35:41 -0500
commite136e769d471e7f3d24a8f6bf9c91dcb372bd0ab (patch)
treeeea67dc58a45abdde867f4e341dbd187df7643e0 /fs
parentHWMON: coretemp, suspend fix (diff)
downloadlinux-dev-e136e769d471e7f3d24a8f6bf9c91dcb372bd0ab.tar.xz
linux-dev-e136e769d471e7f3d24a8f6bf9c91dcb372bd0ab.zip
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/jffs2/background.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/background.c b/fs/jffs2/background.c
index d568ae846741..8adebd3e43c6 100644
--- a/fs/jffs2/background.c
+++ b/fs/jffs2/background.c
@@ -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;