public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] small include/linux/list.h integration ...
@ 2001-07-23 17:00 Davide Libenzi
  0 siblings, 0 replies; only message in thread
From: Davide Libenzi @ 2001-07-23 17:00 UTC (permalink / raw)
  To: lkml

Subject says it all.


- Davide





diff -Nru linux-2.4.7.vanilla/include/linux/list.h linux-2.4.7/include/linux/list.h
--- linux-2.4.7.vanilla/include/linux/list.h    Fri Feb 16 16:06:17 2001
+++ linux-2.4.7/include/linux/list.h    Sun Jul 22 16:22:36 2001
@@ -149,6 +149,11 @@
 #define list_for_each(pos, head) \
        for (pos = (head)->next; pos != (head); pos = pos->next)
 
+#define list_first(head)       (((head)->next != (head)) ? (head)->next: (struct list_head *) 0)
+#define list_last(head)        (((head)->prev != (head)) ? (head)->prev: (struct list_head *) 0)
+#define list_next(pos, head)   (((pos)->next != (head)) ? (pos)->next: (struct list_head *) 0)
+#define list_prev(pos, head)   (((pos)->prev != (head)) ? (pos)->prev: (struct list_head *) 0)
+
 #endif /* __KERNEL__ || _LVM_H_INCLUDE */
 
 #endif



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-07-23 16:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-23 17:00 [PATCH] small include/linux/list.h integration Davide Libenzi

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