* [PATCH] 8139too suspend fix, maybe.
@ 2003-07-03 5:05 Simon Fowler
2003-07-03 5:27 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Simon Fowler @ 2003-07-03 5:05 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: jgarzik
[-- Attachment #1.1: Type: text/plain, Size: 626 bytes --]
I'm currently trying to get my Fujitsu Lifebook P2120 laptop to
suspend/resume successfully, and the first stumbling block I've come
across with a plain Linus bk tree is that while the 8139too driver
is up and running, the kernel thread it starts doesn't suspend. The
attatched patch fixes this; I have no idea if this is correct, but
it works.
Getting the radeonfb to resume is the next problem . . .
Simon
--
PGP public key Id 0x144A991C, or http://himi.org/stuff/himi.asc
(crappy) Homepage: http://himi.org
doe #237 (see http://www.lemuria.org/DeCSS)
My DeCSS mirror: ftp://himi.org/pub/mirrors/css/
[-- Attachment #1.2: 8139too-suspend.patch --]
[-- Type: text/plain, Size: 674 bytes --]
===== drivers/net/8139too.c 1.57 vs edited =====
--- 1.57/drivers/net/8139too.c Thu May 29 14:03:45 2003
+++ edited/drivers/net/8139too.c Thu Jul 3 14:46:38 2003
@@ -109,6 +109,7 @@
#include <linux/ethtool.h>
#include <linux/mii.h>
#include <linux/completion.h>
+#include <linux/suspend.h>
#include <linux/crc32.h>
#include <asm/io.h>
#include <asm/uaccess.h>
@@ -1597,6 +1598,8 @@
timeout = next_tick;
do {
timeout = interruptible_sleep_on_timeout (&tp->thr_wait, timeout);
+ if (current->flags & PF_FREEZE)
+ refrigerator(PF_IOTHREAD);
} while (!signal_pending (current) && (timeout > 0));
if (signal_pending (current)) {
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] 8139too suspend fix, maybe.
2003-07-03 5:05 [PATCH] 8139too suspend fix, maybe Simon Fowler
@ 2003-07-03 5:27 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2003-07-03 5:27 UTC (permalink / raw)
To: Linux Kernel Mailing List
On Thu, Jul 03, 2003 at 03:05:15PM +1000, Simon Fowler wrote:
>
> Getting the radeonfb to resume is the next problem . . .
See the acpi mailing list archives for someone who has solved that.
Good luck,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-07-03 16:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-03 5:05 [PATCH] 8139too suspend fix, maybe Simon Fowler
2003-07-03 5:27 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox