diff options
author | Dave Jones <[email protected]> | 2006-01-06 00:18:38 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2006-01-06 08:33:43 -0800 |
commit | 8c1d286e6aa5581e9d214cbaec2bee0394bb8de8 (patch) | |
tree | 818df5a64c9376286501c8563e4983ddd2085c27 | |
parent | 277c6e2ad7369558dbd7ffbcc6dcbe16458bf723 (diff) |
[PATCH] don't freeze firewire on suspend.
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 <[email protected]>
Cc: Pavel Machek <[email protected]>
Cc: Ben Collins <[email protected]>
Cc: Jody McIntyre <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/ieee1394/ieee1394_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ieee1394/ieee1394_core.c b/drivers/ieee1394/ieee1394_core.c index 64fbbb01d52a..25ef5a86f5f0 100644 --- a/drivers/ieee1394/ieee1394_core.c +++ b/drivers/ieee1394/ieee1394_core.c @@ -1027,10 +1027,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; } |