Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932396AbWEBGTp (ORCPT ); Tue, 2 May 2006 02:19:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932395AbWEBGTp (ORCPT ); Tue, 2 May 2006 02:19:45 -0400 Received: from e36.co.us.ibm.com ([32.97.110.154]:27010 "EHLO e36.co.us.ibm.com") by vger.kernel.org with ESMTP id S932396AbWEBGTo (ORCPT ); Tue, 2 May 2006 02:19:44 -0400 Date: Tue, 2 May 2006 11:46:49 +0530 From: Balbir Singh To: linux-kernel@vger.kernel.org Cc: lse-tech@lists.sourceforge.net, jlan@engr.sgi.com, Jamal , Thomas Graf , netdev Subject: [Patch 4/8] Utilities for genetlink usage Message-ID: <20060502061649.GA22607@in.ibm.com> Reply-To: balbir@in.ibm.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.10i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1462 Lines: 47 genetlink-utils.patch Two utilities for simplifying usage of NETLINK_GENERIC interface. Signed-off-by: Balbir Singh Signed-off-by: Shailabh Nagar --- include/net/genetlink.h | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+) diff -puN include/net/genetlink.h~genetlink-utils include/net/genetlink.h --- linux-2.6.17-rc3/include/net/genetlink.h~genetlink-utils 2006-05-02 07:35:15.000000000 +0530 +++ linux-2.6.17-rc3-balbir/include/net/genetlink.h 2006-05-02 07:35:52.000000000 +0530 @@ -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 */ _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/