public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH -mm] Add genetlink utilities for payload length calculation
@ 2006-09-11  7:40 Balbir Singh
  2006-09-11  7:40 ` [RFC][PATCH -mm] Fix taskstats size calculation (use the new genetlink utility functions) Balbir Singh
  2006-09-11  7:40 ` [RFC][PATCH -mm] Fix getdelays.c - cpumask length and error reporting Balbir Singh
  0 siblings, 2 replies; 3+ messages in thread
From: Balbir Singh @ 2006-09-11  7:40 UTC (permalink / raw)
  To: akpm
  Cc: Jamal Hadi, Shailabh Nagar, Thomas Graf, netdev, Balbir Singh,
	linux-kernel



Add two utility helper functions genlmsg_msg_size() and genlmsg_total_size().
These functions are derived from their netlink counterparts.

Signed-off-by: Balbir Singh <balbir@in.ibm.com>
---

 include/net/genetlink.h |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+)

diff -puN include/net/genetlink.h~genetlink-payload-size-helpers include/net/genetlink.h
--- linux-2.6.18-rc6/include/net/genetlink.h~genetlink-payload-size-helpers	2006-09-11 10:34:56.000000000 +0530
+++ linux-2.6.18-rc6-balbir/include/net/genetlink.h	2006-09-11 11:42:37.000000000 +0530
@@ -171,4 +171,22 @@ static inline int genlmsg_len(const stru
 	return (nlh->nlmsg_len - GENL_HDRLEN - NLMSG_HDRLEN);
 }
 
+/**
+ * genlmsg_msg_size - length of genetlink message not including padding
+ * @payload: length of message payload
+ */
+static inline int genlmsg_msg_size(int payload)
+{
+	return GENL_HDRLEN + payload;
+}
+
+/**
+ * genlmsg_total_size - length of genetlink message including padding
+ * @payload: length of message payload
+ */
+static inline int genlmsg_total_size(int payload)
+{
+	return NLMSG_ALIGN(genlmsg_msg_size(payload));
+}
+
 #endif	/* __NET_GENERIC_NETLINK_H */
_

-- 

	Balbir Singh,
	Linux Technology Center,
	IBM Software Labs

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-09-11  7:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-11  7:40 [RFC][PATCH -mm] Add genetlink utilities for payload length calculation Balbir Singh
2006-09-11  7:40 ` [RFC][PATCH -mm] Fix taskstats size calculation (use the new genetlink utility functions) Balbir Singh
2006-09-11  7:40 ` [RFC][PATCH -mm] Fix getdelays.c - cpumask length and error reporting Balbir Singh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox