The patch titled per-task-delay-accounting: utilities for genetlink usage has been removed from the -mm tree. Its filename is per-task-delay-accounting-utilities-for-genetlink-usage.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: per-task-delay-accounting: utilities for genetlink usage From: Balbir Singh <balbir@xxxxxxxxxx> Two utilities for simplifying usage of NETLINK_GENERIC interface. Signed-off-by: Balbir Singh <balbir@xxxxxxxxxx> Signed-off-by: Shailabh Nagar <nagar@xxxxxxxxxxxxxx> Cc: Jes Sorensen <jes@xxxxxxx> Cc: Peter Chubb <peterc@xxxxxxxxxxxxxxxxxx> Cc: Erich Focht <efocht@xxxxxxxxxx> Cc: Levent Serinol <lserinol@xxxxxxxxx> Cc: Jay Lan <jlan@xxxxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/net/genetlink.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff -puN include/net/genetlink.h~per-task-delay-accounting-utilities-for-genetlink-usage include/net/genetlink.h --- a/include/net/genetlink.h~per-task-delay-accounting-utilities-for-genetlink-usage +++ a/include/net/genetlink.h @@ -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 */ _ Patches currently in -mm which might be from balbir@xxxxxxxxxx are netlink-improve-string-attribute-validation.patch task-watchers-register-per-task-delay-accounting.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html