diff options
author | Thomas Graf <tgraf@suug.ch> | 2007-03-23 02:28:46 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:27:29 -0400 |
commit | d35b685640aeb39eb4f5e98c75e8e001e406f9a3 (patch) | |
tree | c3ec38a2fb54a3783dd9c764bf58be68557f9396 /net/xfrm | |
parent | 33a0543cd9e090d2c6759e0ed85c3049c6efcc06 (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/xfrm')
-rw-r--r-- | net/xfrm/xfrm_user.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 6b7f6dc144c7..913c8b727d8f 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c | |||
@@ -1858,9 +1858,6 @@ static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, int *err | |||
1858 | struct xfrm_link *link; | 1858 | struct xfrm_link *link; |
1859 | int type, min_len; | 1859 | int type, min_len; |
1860 | 1860 | ||
1861 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) | ||
1862 | return 0; | ||
1863 | |||
1864 | type = nlh->nlmsg_type; | 1861 | type = nlh->nlmsg_type; |
1865 | 1862 | ||
1866 | /* A control message: ignore them */ | 1863 | /* A control message: ignore them */ |