From: Balbir Singh Two utilities for simplifying usage of NETLINK_GENERIC interface. Signed-off-by: Balbir Singh Signed-off-by: Shailabh Nagar Cc: Jes Sorensen Cc: Peter Chubb Cc: Erich Focht Cc: Levent Serinol Cc: Jay Lan Cc: "David S. Miller" Signed-off-by: Andrew Morton --- include/net/genetlink.h | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+) diff -puN include/net/genetlink.h~per-task-delay-accounting-utilities-for-genetlink-usage include/net/genetlink.h --- devel/include/net/genetlink.h~per-task-delay-accounting-utilities-for-genetlink-usage 2006-05-11 09:23:58.000000000 -0700 +++ devel-akpm/include/net/genetlink.h 2006-05-11 09:23:58.000000000 -0700 @@ -150,4 +150,24 @@ static inline int genlmsg_unicast(struct return nlmsg_unicast(genl_sock, skb, pid); } +/** + * gennlmsg_data - head of message payload + * @gnlh: genetlink messsage header + */ +static inline void *genlmsg_data(const struct genlmsghdr *gnlh) +{ + return ((unsigned char *) gnlh + GENL_HDRLEN); +} + +/** + * genlmsg_len - length of message payload + * @gnlh: genetlink message header + */ +static inline int genlmsg_len(const struct genlmsghdr *gnlh) +{ + struct nlmsghdr *nlh = (struct nlmsghdr *)((unsigned char *)gnlh - + NLMSG_HDRLEN); + return (nlh->nlmsg_len - GENL_HDRLEN - NLMSG_HDRLEN); +} + #endif /* __NET_GENERIC_NETLINK_H */ _