From: Thomas Graf Date: Fri, 23 Mar 2007 18:17:57 +0000 (-0700) Subject: [NETFILTER] nfnetlink: netlink_run_queue() already checks for NLM_F_REQUEST X-Git-Tag: v2.6.22-rc1~1128^2~182 X-Git-Url: https://bbs.cooldavid.org/git/?a=commitdiff_plain;h=c7bf5f9dc2f78ae8ebbfffc5f17becd0d9e6ba9e;hp=de6e05c49f8b4ed63224c5d38891f531ecc4eabb;p=net-next-2.6.git [NETFILTER] nfnetlink: netlink_run_queue() already checks for NLM_F_REQUEST Patrick has made use of netlink_run_queue() in nfnetlink while my patches have been waiting for net-2.6.22 to open. So this check for NLM_F_REQUEST can go as well. Signed-off-by: Thomas Graf Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c index c37ed0156b0..b0da853eabe 100644 --- a/net/netfilter/nfnetlink.c +++ b/net/netfilter/nfnetlink.c @@ -204,10 +204,6 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) if (security_netlink_recv(skb, CAP_NET_ADMIN)) return -EPERM; - /* Only requests are handled by kernel now. */ - if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) - return 0; - /* All the messages must at least contain nfgenmsg */ if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg))) return 0;