patch-2.3.11 linux/include/linux/list.h
Next file: linux/include/linux/mm.h
Previous file: linux/include/linux/kernel_stat.h
Back to the patch index
Back to the overall index
-  Lines: 27
-  Date:
Sun Jul 11 22:50:27 1999
-  Orig file: 
v2.3.10/linux/include/linux/list.h
-  Orig date: 
Mon Dec  1 11:16:57 1997
diff -u --recursive --new-file v2.3.10/linux/include/linux/list.h linux/include/linux/list.h
@@ -17,8 +17,10 @@
 	struct list_head *next, *prev;
 };
 
+#define LIST_HEAD_INIT(name) { &(name), &(name) }
+
 #define LIST_HEAD(name) \
-	struct list_head name = { &name, &name }
+	struct list_head name = LIST_HEAD_INIT(name)
 
 #define INIT_LIST_HEAD(ptr) do { \
 	(ptr)->next = (ptr); (ptr)->prev = (ptr); \
@@ -46,6 +48,14 @@
 static __inline__ void list_add(struct list_head *new, struct list_head *head)
 {
 	__list_add(new, head, head->next);
+}
+
+/*
+ * Insert a new entry before the specified head..
+ */
+static __inline__ void list_add_tail(struct list_head *new, struct list_head *head)
+{
+	__list_add(new, head->prev, head);
 }
 
 /*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)