summaryrefslogtreecommitdiffstats
path: root/include/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/list.h')
-rw-r--r--include/list.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/list.h b/include/list.h
index cf022fb22..f3ffc7985 100644
--- a/include/list.h
+++ b/include/list.h
@@ -12,6 +12,8 @@
#ifndef UTIL_LINUX_LIST_H
#define UTIL_LINUX_LIST_H
+#include "c.h"
+
/* TODO: use AC_C_INLINE */
#ifdef __GNUC__
#define _INLINE_ static __inline__
@@ -161,10 +163,7 @@ _INLINE_ void list_splice(struct list_head *list, struct list_head *head)
* @type: the type of the struct this is embedded in.
* @member: the name of the list_struct within the struct.
*/
-#define list_entry(ptr, type, member) __extension__ ({ \
- const typeof( ((type *)0)->member ) *__mptr = (ptr); \
- (type *)( (char *)__mptr - offsetof(type,member) );})
-
+#define list_entry(ptr, type, member) container_of(ptr, type, member)
#define list_first_entry(head, type, member) \
((head) && (head)->next != (head) ? list_entry((head)->next, type, member) : NULL)