[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 <davej@redhat.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Ben Collins <bcollins@debian.org> Cc: Jody McIntyre <scjody@modernduck.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
277c6e2ad7
commit
8c1d286e6a
|
@ -1027,10 +1027,10 @@ static int hpsbpkt_thread(void *__hi)
|
||||||
|
|
||||||
daemonize("khpsbpkt");
|
daemonize("khpsbpkt");
|
||||||
|
|
||||||
|
current->flags |= PF_NOFREEZE;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
if (down_interruptible(&khpsbpkt_sig)) {
|
if (down_interruptible(&khpsbpkt_sig)) {
|
||||||
if (try_to_freeze())
|
|
||||||
continue;
|
|
||||||
printk("khpsbpkt: received unexpected signal?!\n" );
|
printk("khpsbpkt: received unexpected signal?!\n" );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue