diff options
-rw-r--r-- | net/core/dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 7e2d5274333f..cbc34c0db376 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1327,7 +1327,8 @@ static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev) | |||
1327 | 1327 | ||
1328 | void __netif_schedule(struct Qdisc *q) | 1328 | void __netif_schedule(struct Qdisc *q) |
1329 | { | 1329 | { |
1330 | BUG_ON(q == &noop_qdisc); | 1330 | if (WARN_ON_ONCE(q == &noop_qdisc)) |
1331 | return; | ||
1331 | 1332 | ||
1332 | if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state)) { | 1333 | if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state)) { |
1333 | struct softnet_data *sd; | 1334 | struct softnet_data *sd; |