Преглед изворни кода

[NET]: Fix "nocast type" warnings in skbuff.h

From: Victor Fusco <victor@cetuc.puc-rio.br>

Fix the sparse warning "implicit cast to nocast type"

Signed-off-by: Victor Fusco <victor@cetuc.puc-rio.br>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Victor Fusco пре 20 година
родитељ
комит
e2bf521d97
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      include/linux/skbuff.h

+ 2 - 1
include/linux/skbuff.h

@@ -502,7 +502,8 @@ static inline struct sk_buff *skb_share_check(struct sk_buff *skb,
  *
  *
  *	%NULL is returned on a memory allocation failure.
  *	%NULL is returned on a memory allocation failure.
  */
  */
-static inline struct sk_buff *skb_unshare(struct sk_buff *skb, int pri)
+static inline struct sk_buff *skb_unshare(struct sk_buff *skb,
+					  unsigned int __nocast pri)
 {
 {
 	might_sleep_if(pri & __GFP_WAIT);
 	might_sleep_if(pri & __GFP_WAIT);
 	if (skb_cloned(skb)) {
 	if (skb_cloned(skb)) {