The patch titled windfarm: dont die on suspend thread signal has been added to the -mm tree. Its filename is windfarm-dont-die-on-suspend-thread-signal.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: windfarm: dont die on suspend thread signal From: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> When the windfarm thread gets a suspend signal it will die instead of freezing. This fixes it. Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/macintosh/windfarm_core.c | 6 ------ 1 files changed, 6 deletions(-) diff -puN drivers/macintosh/windfarm_core.c~windfarm-dont-die-on-suspend-thread-signal drivers/macintosh/windfarm_core.c --- a/drivers/macintosh/windfarm_core.c~windfarm-dont-die-on-suspend-thread-signal +++ a/drivers/macintosh/windfarm_core.c @@ -117,12 +117,6 @@ static int wf_thread_func(void *data) delay = next - jiffies; if (delay <= HZ) schedule_timeout_interruptible(delay); - - /* there should be no signal, but oh well */ - if (signal_pending(current)) { - printk(KERN_WARNING "windfarm: thread got sigl !\n"); - break; - } } DBG("wf: thread stopped\n"); _ Patches currently in -mm which might be from johannes@xxxxxxxxxxxxxxxx are git-alsa.patch windfarm-dont-die-on-suspend-thread-signal.patch swsusp-dont-copy-pages-that-arent-ram.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html