aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
Diffstat (limited to 'net/core')
-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:
1781 1781
1782 spin_lock(root_lock); 1782 spin_lock(root_lock);
1783 1783
1784 rc = q->enqueue(skb, q); 1784 rc = qdisc_enqueue_root(skb, q);
1785 qdisc_run(q); 1785 qdisc_run(q);
1786 1786
1787 spin_unlock(root_lock); 1787 spin_unlock(root_lock);
@@ -2083,7 +2083,7 @@ static int ing_filter(struct sk_buff *skb)
2083 q = rxq->qdisc; 2083 q = rxq->qdisc;
2084 if (q) { 2084 if (q) {
2085 spin_lock(qdisc_lock(q)); 2085 spin_lock(qdisc_lock(q));
2086 result = q->enqueue(skb, q); 2086 result = qdisc_enqueue_root(skb, q);
2087 spin_unlock(qdisc_lock(q)); 2087 spin_unlock(qdisc_lock(q));
2088 } 2088 }
2089 2089