From: Randy Dunlap Date: Wed, 5 Oct 2005 05:42:42 +0000 (-0700) Subject: [NETFILTER]: fix sparse gfp nocast warnings X-Git-Tag: v2.6.14-rc4~39^2~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=c6f4fafccfa66f0530587ac3c11bb8fd0b8fe8ab;p=~shefty%2Frdma-dev.git [NETFILTER]: fix sparse gfp nocast warnings Fix implicit nocast warnings in nfnetlink code: net/netfilter/nfnetlink.c:204:43: warning: implicit cast to nocast type Signed-off-by: Randy Dunlap Signed-off-by: David S. Miller --- diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c index 49a3900e3d3..34d671974a4 100644 --- a/net/netfilter/nfnetlink.c +++ b/net/netfilter/nfnetlink.c @@ -195,7 +195,8 @@ nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys, int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo) { - int allocation = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL; + unsigned int __nocast allocation = + in_interrupt() ? GFP_ATOMIC : GFP_KERNEL; int err = 0; NETLINK_CB(skb).dst_group = group;