aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netlink.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h
index b2738ac8bc99..8d1cb419a930 100644
--- a/include/linux/netlink.h
+++ b/include/linux/netlink.h
@@ -171,8 +171,21 @@ __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len)
171} 171}
172 172
173#define NLMSG_PUT(skb, pid, seq, type, len) \ 173#define NLMSG_PUT(skb, pid, seq, type, len) \
174({ if (skb_tailroom(skb) < (int)NLMSG_SPACE(len)) goto nlmsg_failure; \ 174({ if (skb_tailroom(skb) < (int)NLMSG_SPACE(len)) \
175 __nlmsg_put(skb, pid, seq, type, len); }) 175 goto nlmsg_failure; \
176 __nlmsg_put(skb, pid, seq, type, len); })
177
178#define NLMSG_PUT_ANSWER(skb, cb, type, len) \
179 NLMSG_PUT(skb, NETLINK_CB((cb)->skb).pid, \
180 (cb)->nlh->nlmsg_seq, type, len)
181
182#define NLMSG_END(skb, nlh) \
183({ (nlh)->nlmsg_len = (skb)->tail - (unsigned char *) (nlh); \
184 (skb)->len; })
185
186#define NLMSG_CANCEL(skb, nlh) \
187({ skb_trim(skb, (unsigned char *) (nlh) - (skb)->data); \
188 -1; })
176 189
177extern int netlink_dump_start(struct sock *ssk, struct sk_buff *skb, 190extern int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
178 struct nlmsghdr *nlh, 191 struct nlmsghdr *nlh,