summaryrefslogtreecommitdiff
path: root/net/core/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 065b9817e209..2eed17bcb2dd 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1781,7 +1781,7 @@ gso:
spin_lock(root_lock);
- rc = q->enqueue(skb, q);
+ rc = qdisc_enqueue_root(skb, q);
qdisc_run(q);
spin_unlock(root_lock);
@@ -2083,7 +2083,7 @@ static int ing_filter(struct sk_buff *skb)
q = rxq->qdisc;
if (q) {
spin_lock(qdisc_lock(q));
- result = q->enqueue(skb, q);
+ result = qdisc_enqueue_root(skb, q);
spin_unlock(qdisc_lock(q));
}