diff options
author | Thomas Graf <tgraf@suug.ch> | 2007-03-22 23:29:10 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:27:29 -0700 |
commit | 45e7ae7f716086994e4e747226881f901c67b031 (patch) | |
tree | 8f61cb9e3f67ac433e915176c2bf233d8899691d /net/xfrm | |
parent | d35b685640aeb39eb4f5e98c75e8e001e406f9a3 (diff) | |
download | op-kernel-dev-45e7ae7f716086994e4e747226881f901c67b031.zip op-kernel-dev-45e7ae7f716086994e4e747226881f901c67b031.tar.gz |
[NETLINK]: Ignore control messages directly in netlink_run_queue()
Changes netlink_rcv_skb() to skip netlink controll messages and don't
pass them on to the message handler.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm')
-rw-r--r-- | net/xfrm/xfrm_user.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 913c8b7..4d2f209 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c @@ -1860,10 +1860,6 @@ static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *err type = nlh->nlmsg_type; - /* A control message: ignore them */ - if (type < XFRM_MSG_BASE) - return 0; - /* Unknown message: reply with EINVAL */ if (type > XFRM_MSG_MAX) goto err_einval; |