aboutsummaryrefslogtreecommitdiffstats
path: root/net/netlink/genetlink.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2007-03-23 02:29:10 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:27:29 -0400
commit45e7ae7f716086994e4e747226881f901c67b031 (patch)
tree8f61cb9e3f67ac433e915176c2bf233d8899691d /net/netlink/genetlink.c
parentd35b685640aeb39eb4f5e98c75e8e001e406f9a3 (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/netlink/genetlink.c')
-rw-r--r--net/netlink/genetlink.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 039516f6cd80..95391e609046 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -304,9 +304,6 @@ static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
304 struct genlmsghdr *hdr = nlmsg_data(nlh); 304 struct genlmsghdr *hdr = nlmsg_data(nlh);
305 int hdrlen, err = -EINVAL; 305 int hdrlen, err = -EINVAL;
306 306
307 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
308 goto ignore;
309
310 family = genl_family_find_byid(nlh->nlmsg_type); 307 family = genl_family_find_byid(nlh->nlmsg_type);
311 if (family == NULL) { 308 if (family == NULL) {
312 err = -ENOENT; 309 err = -ENOENT;
@@ -364,9 +361,6 @@ static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
364 *errp = err = ops->doit(skb, &info); 361 *errp = err = ops->doit(skb, &info);
365 return err; 362 return err;
366 363
367ignore:
368 return 0;
369
370errout: 364errout:
371 *errp = err; 365 *errp = err;
372 return -1; 366 return -1;