]> git.baikalelectronics.ru Git - kernel.git/commit
net: sched: use __skb_queue_head_init() where applicable
authorEric Dumazet <edumazet@google.com>
Wed, 17 Sep 2014 15:05:05 +0000 (08:05 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 19 Sep 2014 20:32:10 +0000 (16:32 -0400)
commit151f1cdd7af5a55fef5810b972570264f2fb5281
tree5429ab1235fdaeb1318b44abb555725f3f36ef37
parent9f0deffc4d1545f93517040233daf7ff7ac7cdf3
net: sched: use __skb_queue_head_init() where applicable

pfifo_fast and htb use skb lists, without needing their spinlocks.
(They instead use the standard qdisc lock)

We can use __skb_queue_head_init() instead of skb_queue_head_init()
to be consistent.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_generic.c
net/sched/sch_htb.c