Skip to content

Commit aaf1059

Browse files
djbwstellarhopper
authored andcommitted
ccan/list: Import latest list helpers
Pick up the definition of list_add_{before,after} and other updates from ccan at commit 52b86922f846 ("ccan/base64: fix GCC warning."). Link: https://lore.kernel.org/r/165781813572.1555691.15909358688944168922.stgit@dwillia2-xfh.jf.intel.com Reported-by: Ira Weiny <[email protected]> Reviewed-by: Ira Weiny <[email protected]> Signed-off-by: Dan Williams <[email protected]> Signed-off-by: Vishal Verma <[email protected]>
1 parent bbc0da9 commit aaf1059

File tree

3 files changed

+222
-77
lines changed

3 files changed

+222
-77
lines changed

ccan/list/list.h

+222-36
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ struct list_node *list_check_node(const struct list_node *n,
9595
#define list_debug(h, loc) list_check((h), loc)
9696
#define list_debug_node(n, loc) list_check_node((n), loc)
9797
#else
98-
#define list_debug(h, loc) (h)
99-
#define list_debug_node(n, loc) (n)
98+
#define list_debug(h, loc) ((void)loc, h)
99+
#define list_debug_node(n, loc) ((void)loc, n)
100100
#endif
101101

102102
/**
@@ -111,7 +111,7 @@ struct list_node *list_check_node(const struct list_node *n,
111111
* Example:
112112
* static struct list_head my_list = LIST_HEAD_INIT(my_list);
113113
*/
114-
#define LIST_HEAD_INIT(name) { { &name.n, &name.n } }
114+
#define LIST_HEAD_INIT(name) { { &(name).n, &(name).n } }
115115

116116
/**
117117
* LIST_HEAD - define and initialize an empty list_head
@@ -145,6 +145,48 @@ static inline void list_head_init(struct list_head *h)
145145
h->n.next = h->n.prev = &h->n;
146146
}
147147

148+
/**
149+
* list_node_init - initialize a list_node
150+
* @n: the list_node to link to itself.
151+
*
152+
* You don't need to use this normally! But it lets you list_del(@n)
153+
* safely.
154+
*/
155+
static inline void list_node_init(struct list_node *n)
156+
{
157+
n->next = n->prev = n;
158+
}
159+
160+
/**
161+
* list_add_after - add an entry after an existing node in a linked list
162+
* @h: the list_head to add the node to (for debugging)
163+
* @p: the existing list_node to add the node after
164+
* @n: the new list_node to add to the list.
165+
*
166+
* The existing list_node must already be a member of the list.
167+
* The new list_node does not need to be initialized; it will be overwritten.
168+
*
169+
* Example:
170+
* struct child c1, c2, c3;
171+
* LIST_HEAD(h);
172+
*
173+
* list_add_tail(&h, &c1.list);
174+
* list_add_tail(&h, &c3.list);
175+
* list_add_after(&h, &c1.list, &c2.list);
176+
*/
177+
#define list_add_after(h, p, n) list_add_after_(h, p, n, LIST_LOC)
178+
static inline void list_add_after_(struct list_head *h,
179+
struct list_node *p,
180+
struct list_node *n,
181+
const char *abortstr)
182+
{
183+
n->next = p->next;
184+
n->prev = p;
185+
p->next->prev = n;
186+
p->next = n;
187+
(void)list_debug(h, abortstr);
188+
}
189+
148190
/**
149191
* list_add - add an entry at the start of a linked list.
150192
* @h: the list_head to add the node to
@@ -163,10 +205,34 @@ static inline void list_add_(struct list_head *h,
163205
struct list_node *n,
164206
const char *abortstr)
165207
{
166-
n->next = h->n.next;
167-
n->prev = &h->n;
168-
h->n.next->prev = n;
169-
h->n.next = n;
208+
list_add_after_(h, &h->n, n, abortstr);
209+
}
210+
211+
/**
212+
* list_add_before - add an entry before an existing node in a linked list
213+
* @h: the list_head to add the node to (for debugging)
214+
* @p: the existing list_node to add the node before
215+
* @n: the new list_node to add to the list.
216+
*
217+
* The existing list_node must already be a member of the list.
218+
* The new list_node does not need to be initialized; it will be overwritten.
219+
*
220+
* Example:
221+
* list_head_init(&h);
222+
* list_add_tail(&h, &c1.list);
223+
* list_add_tail(&h, &c3.list);
224+
* list_add_before(&h, &c3.list, &c2.list);
225+
*/
226+
#define list_add_before(h, p, n) list_add_before_(h, p, n, LIST_LOC)
227+
static inline void list_add_before_(struct list_head *h,
228+
struct list_node *p,
229+
struct list_node *n,
230+
const char *abortstr)
231+
{
232+
n->next = p;
233+
n->prev = p->prev;
234+
p->prev->next = n;
235+
p->prev = n;
170236
(void)list_debug(h, abortstr);
171237
}
172238

@@ -185,11 +251,7 @@ static inline void list_add_tail_(struct list_head *h,
185251
struct list_node *n,
186252
const char *abortstr)
187253
{
188-
n->next = &h->n;
189-
n->prev = h->n.prev;
190-
h->n.prev->next = n;
191-
h->n.prev = n;
192-
(void)list_debug(h, abortstr);
254+
list_add_before_(h, &h->n, n, abortstr);
193255
}
194256

195257
/**
@@ -229,6 +291,21 @@ static inline bool list_empty_nodebug(const struct list_head *h)
229291
}
230292
#endif
231293

294+
/**
295+
* list_empty_nocheck - is a list empty?
296+
* @h: the list_head
297+
*
298+
* If the list is empty, returns true. This doesn't perform any
299+
* debug check for list consistency, so it can be called without
300+
* locks, racing with the list being modified. This is ok for
301+
* checks where an incorrect result is not an issue (optimized
302+
* bail out path for example).
303+
*/
304+
static inline bool list_empty_nocheck(const struct list_head *h)
305+
{
306+
return h->n.next == &h->n;
307+
}
308+
232309
/**
233310
* list_del - delete an entry from an (unknown) linked list.
234311
* @n: the list_node to delete from the list.
@@ -237,7 +314,7 @@ static inline bool list_empty_nodebug(const struct list_head *h)
237314
* another list, but not deleted again.
238315
*
239316
* See also:
240-
* list_del_from()
317+
* list_del_from(), list_del_init()
241318
*
242319
* Example:
243320
* list_del(&child->list);
@@ -255,6 +332,27 @@ static inline void list_del_(struct list_node *n, const char* abortstr)
255332
#endif
256333
}
257334

335+
/**
336+
* list_del_init - delete a node, and reset it so it can be deleted again.
337+
* @n: the list_node to be deleted.
338+
*
339+
* list_del(@n) or list_del_init() again after this will be safe,
340+
* which can be useful in some cases.
341+
*
342+
* See also:
343+
* list_del_from(), list_del()
344+
*
345+
* Example:
346+
* list_del_init(&child->list);
347+
* parent->num_children--;
348+
*/
349+
#define list_del_init(n) list_del_init_(n, LIST_LOC)
350+
static inline void list_del_init_(struct list_node *n, const char *abortstr)
351+
{
352+
list_del_(n, abortstr);
353+
list_node_init(n);
354+
}
355+
258356
/**
259357
* list_del_from - delete an entry from a known linked list.
260358
* @h: the list_head the node is in.
@@ -285,6 +383,39 @@ static inline void list_del_from(struct list_head *h, struct list_node *n)
285383
list_del(n);
286384
}
287385

386+
/**
387+
* list_swap - swap out an entry from an (unknown) linked list for a new one.
388+
* @o: the list_node to replace from the list.
389+
* @n: the list_node to insert in place of the old one.
390+
*
391+
* Note that this leaves @o in an undefined state; it can be added to
392+
* another list, but not deleted/swapped again.
393+
*
394+
* See also:
395+
* list_del()
396+
*
397+
* Example:
398+
* struct child x1, x2;
399+
* LIST_HEAD(xh);
400+
*
401+
* list_add(&xh, &x1.list);
402+
* list_swap(&x1.list, &x2.list);
403+
*/
404+
#define list_swap(o, n) list_swap_(o, n, LIST_LOC)
405+
static inline void list_swap_(struct list_node *o,
406+
struct list_node *n,
407+
const char* abortstr)
408+
{
409+
(void)list_debug_node(o, abortstr);
410+
*n = *o;
411+
n->next->prev = n;
412+
n->prev->next = n;
413+
#ifdef CCAN_LIST_DEBUG
414+
/* Catch use-after-del. */
415+
o->next = o->prev = NULL;
416+
#endif
417+
}
418+
288419
/**
289420
* list_entry - convert a list_node back into the structure containing it.
290421
* @n: the list_node
@@ -406,9 +537,29 @@ static inline const void *list_tail_(const struct list_head *h, size_t off)
406537
* printf("Name: %s\n", child->name);
407538
*/
408539
#define list_for_each_rev(h, i, member) \
409-
for (i = container_of_var(list_debug(h, LIST_LOC)->n.prev, i, member); \
410-
&i->member != &(h)->n; \
411-
i = container_of_var(i->member.prev, i, member))
540+
list_for_each_rev_off(h, i, list_off_var_(i, member))
541+
542+
/**
543+
* list_for_each_rev_safe - iterate through a list backwards,
544+
* maybe during deletion
545+
* @h: the list_head
546+
* @i: the structure containing the list_node
547+
* @nxt: the structure containing the list_node
548+
* @member: the list_node member of the structure
549+
*
550+
* This is a convenient wrapper to iterate @i over the entire list backwards.
551+
* It's a for loop, so you can break and continue as normal. The extra
552+
* variable * @nxt is used to hold the next element, so you can delete @i
553+
* from the list.
554+
*
555+
* Example:
556+
* struct child *next;
557+
* list_for_each_rev_safe(&parent->children, child, next, list) {
558+
* printf("Name: %s\n", child->name);
559+
* }
560+
*/
561+
#define list_for_each_rev_safe(h, i, nxt, member) \
562+
list_for_each_rev_safe_off(h, i, nxt, list_off_var_(i, member))
412563

413564
/**
414565
* list_for_each_safe - iterate through a list, maybe during deletion
@@ -422,7 +573,6 @@ static inline const void *list_tail_(const struct list_head *h, size_t off)
422573
* @nxt is used to hold the next element, so you can delete @i from the list.
423574
*
424575
* Example:
425-
* struct child *next;
426576
* list_for_each_safe(&parent->children, child, next, list) {
427577
* list_del(&child->list);
428578
* parent->num_children--;
@@ -537,23 +687,41 @@ static inline void list_prepend_list_(struct list_head *to,
537687
list_head_init(from);
538688
}
539689

690+
/* internal macros, do not use directly */
691+
#define list_for_each_off_dir_(h, i, off, dir) \
692+
for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.dir, \
693+
(off)); \
694+
list_node_from_off_((void *)i, (off)) != &(h)->n; \
695+
i = list_node_to_off_(list_node_from_off_((void *)i, (off))->dir, \
696+
(off)))
697+
698+
#define list_for_each_safe_off_dir_(h, i, nxt, off, dir) \
699+
for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.dir, \
700+
(off)), \
701+
nxt = list_node_to_off_(list_node_from_off_(i, (off))->dir, \
702+
(off)); \
703+
list_node_from_off_(i, (off)) != &(h)->n; \
704+
i = nxt, \
705+
nxt = list_node_to_off_(list_node_from_off_(i, (off))->dir, \
706+
(off)))
707+
540708
/**
541709
* list_for_each_off - iterate through a list of memory regions.
542710
* @h: the list_head
543-
* @i: the pointer to a memory region wich contains list node data.
711+
* @i: the pointer to a memory region which contains list node data.
544712
* @off: offset(relative to @i) at which list node data resides.
545713
*
546714
* This is a low-level wrapper to iterate @i over the entire list, used to
547715
* implement all oher, more high-level, for-each constructs. It's a for loop,
548716
* so you can break and continue as normal.
549717
*
550718
* WARNING! Being the low-level macro that it is, this wrapper doesn't know
551-
* nor care about the type of @i. The only assumtion made is that @i points
719+
* nor care about the type of @i. The only assumption made is that @i points
552720
* to a chunk of memory that at some @offset, relative to @i, contains a
553-
* properly filled `struct node_list' which in turn contains pointers to
554-
* memory chunks and it's turtles all the way down. Whith all that in mind
721+
* properly filled `struct list_node' which in turn contains pointers to
722+
* memory chunks and it's turtles all the way down. With all that in mind
555723
* remember that given the wrong pointer/offset couple this macro will
556-
* happilly churn all you memory untill SEGFAULT stops it, in other words
724+
* happily churn all you memory until SEGFAULT stops it, in other words
557725
* caveat emptor.
558726
*
559727
* It is worth mentioning that one of legitimate use-cases for that wrapper
@@ -567,17 +735,24 @@ static inline void list_prepend_list_(struct list_head *to,
567735
* printf("Name: %s\n", child->name);
568736
*/
569737
#define list_for_each_off(h, i, off) \
570-
for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.next, \
571-
(off)); \
572-
list_node_from_off_((void *)i, (off)) != &(h)->n; \
573-
i = list_node_to_off_(list_node_from_off_((void *)i, (off))->next, \
574-
(off)))
738+
list_for_each_off_dir_((h),(i),(off),next)
739+
740+
/**
741+
* list_for_each_rev_off - iterate through a list of memory regions backwards
742+
* @h: the list_head
743+
* @i: the pointer to a memory region which contains list node data.
744+
* @off: offset(relative to @i) at which list node data resides.
745+
*
746+
* See list_for_each_off for details
747+
*/
748+
#define list_for_each_rev_off(h, i, off) \
749+
list_for_each_off_dir_((h),(i),(off),prev)
575750

576751
/**
577752
* list_for_each_safe_off - iterate through a list of memory regions, maybe
578753
* during deletion
579754
* @h: the list_head
580-
* @i: the pointer to a memory region wich contains list node data.
755+
* @i: the pointer to a memory region which contains list node data.
581756
* @nxt: the structure containing the list_node
582757
* @off: offset(relative to @i) at which list node data resides.
583758
*
@@ -590,15 +765,26 @@ static inline void list_prepend_list_(struct list_head *to,
590765
* printf("Name: %s\n", child->name);
591766
*/
592767
#define list_for_each_safe_off(h, i, nxt, off) \
593-
for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.next, \
594-
(off)), \
595-
nxt = list_node_to_off_(list_node_from_off_(i, (off))->next, \
596-
(off)); \
597-
list_node_from_off_(i, (off)) != &(h)->n; \
598-
i = nxt, \
599-
nxt = list_node_to_off_(list_node_from_off_(i, (off))->next, \
600-
(off)))
768+
list_for_each_safe_off_dir_((h),(i),(nxt),(off),next)
601769

770+
/**
771+
* list_for_each_rev_safe_off - iterate backwards through a list of
772+
* memory regions, maybe during deletion
773+
* @h: the list_head
774+
* @i: the pointer to a memory region which contains list node data.
775+
* @nxt: the structure containing the list_node
776+
* @off: offset(relative to @i) at which list node data resides.
777+
*
778+
* For details see `list_for_each_rev_off' and `list_for_each_rev_safe'
779+
* descriptions.
780+
*
781+
* Example:
782+
* list_for_each_rev_safe_off(&parent->children, child,
783+
* next, offsetof(struct child, list))
784+
* printf("Name: %s\n", child->name);
785+
*/
786+
#define list_for_each_rev_safe_off(h, i, nxt, off) \
787+
list_for_each_safe_off_dir_((h),(i),(nxt),(off),prev)
602788

603789
/* Other -off variants. */
604790
#define list_entry_off(n, type, off) \

ndctl/lib/inject.c

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Copyright (C) 2014-2020, Intel Corporation. All rights reserved.
33
#include <stdlib.h>
44
#include <limits.h>
5-
#include <util/list.h>
65
#include <util/size.h>
76
#include <ndctl/libndctl.h>
87
#include <ccan/list/list.h>

0 commit comments

Comments
 (0)