summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm-2.4/patches/011-wl_qdisc_war.patch
blob: b2e746a6c070ba3f6f8a2b4e823734f9c0b9c82a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/net/sched/sch_generic.c
+++ b/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. */