diff options
author | Patrick McHardy <kaber@trash.net> | 2007-12-05 06:31:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:56:34 -0500 |
commit | f4d900a2cae94256f56be7769734100c7054bf00 (patch) | |
tree | 3991508447452b737d11769c5e1a8799812243bb /include/linux/netlink.h | |
parent | a59322be07c964e916d15be3df473fb7ba20c41e (diff) |
[NETLINK]: Mark attribute construction exception unlikely
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netlink.h')
-rw-r--r-- | include/linux/netlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index d5bfaba595c7..2aee0f510876 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
@@ -245,7 +245,7 @@ __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags) | |||
245 | } | 245 | } |
246 | 246 | ||
247 | #define NLMSG_NEW(skb, pid, seq, type, len, flags) \ | 247 | #define NLMSG_NEW(skb, pid, seq, type, len, flags) \ |
248 | ({ if (skb_tailroom(skb) < (int)NLMSG_SPACE(len)) \ | 248 | ({ if (unlikely(skb_tailroom(skb) < (int)NLMSG_SPACE(len))) \ |
249 | goto nlmsg_failure; \ | 249 | goto nlmsg_failure; \ |
250 | __nlmsg_put(skb, pid, seq, type, len, flags); }) | 250 | __nlmsg_put(skb, pid, seq, type, len, flags); }) |
251 | 251 | ||