aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/rtnetlink.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2007-03-23 02:28:46 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:27:29 -0400
commitd35b685640aeb39eb4f5e98c75e8e001e406f9a3 (patch)
treec3ec38a2fb54a3783dd9c764bf58be68557f9396 /net/core/rtnetlink.c
parent33a0543cd9e090d2c6759e0ed85c3049c6efcc06 (diff)
[NETLINK]: Ignore !NLM_F_REQUEST messages directly in netlink_run_queue()
netlink_rcv_skb() is changed to skip messages which don't have the NLM_F_REQUEST bit to avoid every netlink family having to perform this check on their own. 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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 4398cb81bcab..cc09283fd76a 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -862,10 +862,6 @@ rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *errp)
862 int type; 862 int type;
863 int err; 863 int err;
864 864
865 /* Only requests are handled by kernel now */
866 if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
867 return 0;
868
869 type = nlh->nlmsg_type; 865 type = nlh->nlmsg_type;
870 866
871 /* A control message: ignore them */ 867 /* A control message: ignore them */