summaryrefslogtreecommitdiff
path: root/backport-include/linux/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'backport-include/linux/stddef.h')
-rw-r--r--backport-include/linux/stddef.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/backport-include/linux/stddef.h b/backport-include/linux/stddef.h
new file mode 100644
index 0000000..2c836b0
--- /dev/null
+++ b/backport-include/linux/stddef.h
@@ -0,0 +1,16 @@
+#ifndef __BACKPORT_LINUX_STDDEF_H
+#define __BACKPORT_LINUX_STDDEF_H
+#include_next <linux/stddef.h>
+
+#ifndef offsetofend
+/**
+ * offsetofend(TYPE, MEMBER)
+ *
+ * @TYPE: The type of the structure
+ * @MEMBER: The member within the structure to get the end offset of
+ */
+#define offsetofend(TYPE, MEMBER) \
+ (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
+#endif
+
+#endif /* __BACKPORT_LINUX_STDDEF_H */