From: Victor Fusco Date: Mon, 18 Jul 2005 20:35:43 +0000 (-0700) Subject: [NETLINK]: Fix "nocast type" warnings X-Git-Tag: v2.6.13-rc4~84^2~31 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=37da647d994cdac7e0bc8d2a365fbda403939a2b;p=~emulex%2Finfiniband.git [NETLINK]: Fix "nocast type" warnings From: Victor Fusco Fix the sparse warning "implicit cast to nocast type" Signed-off-by: Victor Fusco Signed-off-by: Domen Puncer Signed-off-by: David S. Miller --- diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 3405fdf41b9..ff774a06c89 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -648,7 +648,8 @@ void netlink_detachskb(struct sock *sk, struct sk_buff *skb) sock_put(sk); } -static inline struct sk_buff *netlink_trim(struct sk_buff *skb, int allocation) +static inline struct sk_buff *netlink_trim(struct sk_buff *skb, + unsigned int __nocast allocation) { int delta; @@ -717,7 +718,7 @@ struct netlink_broadcast_data { int failure; int congested; int delivered; - int allocation; + unsigned int allocation; struct sk_buff *skb, *skb2; };