diff options
author | Robert Olsson <robert.olsson@its.uu.se> | 2007-08-28 18:43:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-08-28 18:43:14 -0400 |
commit | 378be2c08314fc46e3f814fa264ff8ebdb79712f (patch) | |
tree | 63624dbb5ddbb25085ed6f0bf9970991fb6dd508 /net/core/pktgen.c | |
parent | 594a9dfae7113d9601b2c353754c40d0b7e00a03 (diff) |
[PKTGEN]: Fix multiqueue oops.
Initially pkt_dev can be NULL this causes netif_subqueue_stopped to
oops. The patch below should cure it. But maybe the pktgen TX logic
should be reworked to better support the new multiqueue support.
Signed-off-by: Robert Olsson <robert.olsson@its.uu.se>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/pktgen.c')
-rw-r--r-- | net/core/pktgen.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c index 7bae576ac115..4ad62d375373 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c | |||
@@ -3331,8 +3331,9 @@ static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev) | |||
3331 | } | 3331 | } |
3332 | 3332 | ||
3333 | if ((netif_queue_stopped(odev) || | 3333 | if ((netif_queue_stopped(odev) || |
3334 | netif_subqueue_stopped(odev, pkt_dev->skb->queue_mapping)) || | 3334 | (pkt_dev->skb && |
3335 | need_resched()) { | 3335 | netif_subqueue_stopped(odev, pkt_dev->skb->queue_mapping))) || |
3336 | need_resched()) { | ||
3336 | idle_start = getCurUs(); | 3337 | idle_start = getCurUs(); |
3337 | 3338 | ||
3338 | if (!netif_running(odev)) { | 3339 | if (!netif_running(odev)) { |