diff options
Diffstat (limited to 'net/netlink/af_netlink.c')
-rw-r--r-- | net/netlink/af_netlink.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 7b455980e9bf..5d1079b1838c 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -1479,6 +1479,10 @@ static int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *, | |||
1479 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) | 1479 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) |
1480 | goto skip; | 1480 | goto skip; |
1481 | 1481 | ||
1482 | /* Skip control messages */ | ||
1483 | if (nlh->nlmsg_type < NLMSG_MIN_TYPE) | ||
1484 | goto skip; | ||
1485 | |||
1482 | if (cb(skb, nlh, &err) < 0) { | 1486 | if (cb(skb, nlh, &err) < 0) { |
1483 | /* Not an error, but we have to interrupt processing | 1487 | /* Not an error, but we have to interrupt processing |
1484 | * here. Note: that in this case we do not pull | 1488 | * here. Note: that in this case we do not pull |