From: Dave Jones We had a report from one loony user who tried out suspend to disk using a swap partition on a firewire drive. As the firewire thread was put to sleep it didn't work out too well. Signed-off-by: Dave Jones Cc: Pavel Machek Cc: Ben Collins Cc: Jody McIntyre Signed-off-by: Andrew Morton --- drivers/ieee1394/ieee1394_core.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/ieee1394/ieee1394_core.c~dont-freeze-firewire-on-suspend drivers/ieee1394/ieee1394_core.c --- devel/drivers/ieee1394/ieee1394_core.c~dont-freeze-firewire-on-suspend 2006-01-05 04:16:08.000000000 -0800 +++ devel-akpm/drivers/ieee1394/ieee1394_core.c 2006-01-05 04:16:29.000000000 -0800 @@ -1030,10 +1030,10 @@ static int hpsbpkt_thread(void *__hi) daemonize("khpsbpkt"); + current->flags |= PF_NOFREEZE; + while (1) { if (down_interruptible(&khpsbpkt_sig)) { - if (try_to_freeze()) - continue; printk("khpsbpkt: received unexpected signal?!\n" ); break; } _