diff options
author | Thomas Graf <tgraf@suug.ch> | 2007-03-23 02:29:10 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:27:29 -0400 |
commit | 45e7ae7f716086994e4e747226881f901c67b031 (patch) | |
tree | 8f61cb9e3f67ac433e915176c2bf233d8899691d /net/core/rtnetlink.c | |
parent | d35b685640aeb39eb4f5e98c75e8e001e406f9a3 (diff) |
[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/core/rtnetlink.c')
-rw-r--r-- | net/core/rtnetlink.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index cc09283fd76a..b2136accd267 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c | |||
@@ -864,10 +864,6 @@ rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp) | |||
864 | 864 | ||
865 | type = nlh->nlmsg_type; | 865 | type = nlh->nlmsg_type; |
866 | 866 | ||
867 | /* A control message: ignore them */ | ||
868 | if (type < RTM_BASE) | ||
869 | return 0; | ||
870 | |||
871 | /* Unknown message: reply with EINVAL */ | 867 | /* Unknown message: reply with EINVAL */ |
872 | if (type > RTM_MAX) | 868 | if (type > RTM_MAX) |
873 | goto err_inval; | 869 | goto err_inval; |