2008-01-06 19:28:07 +00:00
|
|
|
Index: linux-2.4.35.4/net/sched/sch_generic.c
|
|
|
|
===================================================================
|
2008-05-19 13:45:06 +00:00
|
|
|
--- linux-2.4.35.4.orig/net/sched/sch_generic.c
|
|
|
|
+++ linux-2.4.35.4/net/sched/sch_generic.c
|
|
|
|
@@ -84,6 +84,11 @@ int qdisc_restart(struct net_device *dev
|
2006-11-24 01:48:23 +00:00
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
/* Dequeue packet */
|
|
|
|
+ if (!q) {
|
|
|
|
+ if (net_ratelimit())
|
|
|
|
+ printk(KERN_DEBUG "HELP ME! qdisc_restart called, but no Qdisc!\n");
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
if ((skb = q->dequeue(q)) != NULL) {
|
|
|
|
if (spin_trylock(&dev->xmit_lock)) {
|
|
|
|
/* Remember that the driver is grabbed by us. */
|