mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:25:20 +02:00
5591c13267
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11214 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
571 B
Diff
17 lines
571 B
Diff
Index: linux-2.4.35.4/net/sched/sch_generic.c
|
|
===================================================================
|
|
--- 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
|
|
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. */
|