diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/skbuff.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index b91fbfb7d54c..b22d4a6083bd 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -606,10 +606,17 @@ static inline __u32 skb_queue_len(const struct sk_buff_head *list_) | |||
606 | 606 | ||
607 | extern struct lock_class_key skb_queue_lock_key; | 607 | extern struct lock_class_key skb_queue_lock_key; |
608 | 608 | ||
609 | /* | ||
610 | * This function creates a split out lock class for each invocation; | ||
611 | * this is needed for now since a whole lot of users of the skb-queue | ||
612 | * infrastructure in drivers have different locking usage (in hardirq) | ||
613 | * than the networking core (in softirq only). In the long run either the | ||
614 | * network layer or drivers should need annotation to consolidate the | ||
615 | * main types of usage into 3 classes. | ||
616 | */ | ||
609 | static inline void skb_queue_head_init(struct sk_buff_head *list) | 617 | static inline void skb_queue_head_init(struct sk_buff_head *list) |
610 | { | 618 | { |
611 | spin_lock_init(&list->lock); | 619 | spin_lock_init(&list->lock); |
612 | lockdep_set_class(&list->lock, &skb_queue_lock_key); | ||
613 | list->prev = list->next = (struct sk_buff *)list; | 620 | list->prev = list->next = (struct sk_buff *)list; |
614 | list->qlen = 0; | 621 | list->qlen = 0; |
615 | } | 622 | } |