Signed-off-by: Tomeu Vizoso <[email protected]>
---

 include/linux/stddef.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/include/linux/stddef.h b/include/linux/stddef.h
index 9c61c7cda936..e60bd164c03a 100644
--- a/include/linux/stddef.h
+++ b/include/linux/stddef.h
@@ -27,4 +27,11 @@ enum {
 #define offsetofend(TYPE, MEMBER) \
        (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
 
+#define typecheck_member(TYPE, MEMBER, MEMBERTYPE) \
+       ((size_t)(&((TYPE *)0)->MEMBER - (MEMBERTYPE*)0) ? 0 : 0)
+
+/* like offsetof(), but ensures that MEMBER is of type MEMBERTYPE */
+#define offsetof_t(TYPE, MEMBER, MEMBERTYPE) \
+       (typecheck_member(TYPE, MEMBER, MEMBERTYPE) + offsetof(TYPE, MEMBER))
+
 #endif
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to