aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/genetlink.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/genetlink.h')
-rw-r--r--include/net/genetlink.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h
index b619314218a6..2010465fa7d4 100644
--- a/include/net/genetlink.h
+++ b/include/net/genetlink.h
@@ -187,4 +187,15 @@ static inline int genlmsg_total_size(int payload)
187 return NLMSG_ALIGN(genlmsg_msg_size(payload)); 187 return NLMSG_ALIGN(genlmsg_msg_size(payload));
188} 188}
189 189
190/**
191 * genlmsg_new - Allocate a new generic netlink message
192 * @payload: size of the message payload
193 * @flags: the type of memory to allocate.
194 */
195static inline struct sk_buff *genlmsg_new(size_t payload, gfp_t flags)
196{
197 return nlmsg_new(genlmsg_total_size(payload), flags);
198}
199
200
190#endif /* __NET_GENERIC_NETLINK_H */ 201#endif /* __NET_GENERIC_NETLINK_H */