diff options
author | Rafael J. Wysocki <[email protected]> | 2010-02-04 14:00:41 -0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2010-02-04 14:00:41 -0800 |
commit | 1b3f720bf033fde1fbb6231f9b156b918c5f68d8 (patch) | |
tree | 509709296d8e2adc882d4302159b2653b421b55e | |
parent | feeb2721a7a0bd0cfa5b8847f80aec93aa2cc00d (diff) |
pktgen: Fix freezing problem
Add missing try_to_freeze() to one of the pktgen_thread_worker() code
paths so that it doesn't block suspend/hibernation.
Fixes http://bugzilla.kernel.org/show_bug.cgi?id=15006
Signed-off-by: Rafael J. Wysocki <[email protected]>
Reported-and-tested-by: Ciprian Dorin Craciun <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/core/pktgen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c index de0c2c726420..2e692afdc55d 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -3524,6 +3524,7 @@ static int pktgen_thread_worker(void *arg) wait_event_interruptible_timeout(t->queue, t->control != 0, HZ/10); + try_to_freeze(); continue; } |