]> git.ozlabs.org Git - ccan/commitdiff
list: add list_for_each_rev_off macro
authorEric Wong <normalperson@yhbt.net>
Fri, 24 Oct 2014 22:02:31 +0000 (22:02 +0000)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 30 Mar 2015 06:46:33 +0000 (17:16 +1030)
And re-implement list_for_each_rev in terms of list_for_each_rev_off
to avoid duplicating iteration logic.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/list/list.h

index 90989c5fc04b6bd8436361dcda42f8f5f0ce7853..aaf135d1c7a835a7d5ba09db0272c1b80e3831f9 100644 (file)
@@ -522,9 +522,7 @@ static inline const void *list_tail_(const struct list_head *h, size_t off)
  *             printf("Name: %s\n", child->name);
  */
 #define list_for_each_rev(h, i, member)                                        \
-       for (i = container_of_var(list_debug(h, LIST_LOC)->n.prev, i, member); \
-            &i->member != &(h)->n;                                     \
-            i = container_of_var(i->member.prev, i, member))
+       list_for_each_rev_off(h, i, list_off_var_(i, member))
 
 /**
  * list_for_each_safe - iterate through a list, maybe during deletion
@@ -703,6 +701,17 @@ static inline void list_prepend_list_(struct list_head *to,
 #define list_for_each_off(h, i, off)                                    \
        list_for_each_off_dir_((h),(i),(off),next)
 
+/**
+ * list_for_each_rev_off - iterate through a list of memory regions backwards
+ * @h: the list_head
+ * @i: the pointer to a memory region wich contains list node data.
+ * @off: offset(relative to @i) at which list node data resides.
+ *
+ * See list_for_each_off for details
+ */
+#define list_for_each_rev_off(h, i, off)                                    \
+       list_for_each_off_dir_((h),(i),(off),prev)
+
 /**
  * list_for_each_safe_off - iterate through a list of memory regions, maybe
  * during deletion