diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 7f31d0f88424..c8f5ea9aea81 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1747,10 +1747,10 @@ static int ing_filter(struct sk_buff *skb) | |||
1747 | 1747 | ||
1748 | skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS); | 1748 | skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS); |
1749 | 1749 | ||
1750 | spin_lock(&dev->queue_lock); | 1750 | spin_lock(&dev->ingress_lock); |
1751 | if ((q = dev->qdisc_ingress) != NULL) | 1751 | if ((q = dev->qdisc_ingress) != NULL) |
1752 | result = q->enqueue(skb, q); | 1752 | result = q->enqueue(skb, q); |
1753 | spin_unlock(&dev->queue_lock); | 1753 | spin_unlock(&dev->ingress_lock); |
1754 | 1754 | ||
1755 | } | 1755 | } |
1756 | 1756 | ||