@@ -95,8 +95,8 @@ struct list_node *list_check_node(const struct list_node *n,
95
95
#define list_debug (h , loc ) list_check((h), loc)
96
96
#define list_debug_node (n , loc ) list_check_node((n), loc)
97
97
#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)
100
100
#endif
101
101
102
102
/**
@@ -111,7 +111,7 @@ struct list_node *list_check_node(const struct list_node *n,
111
111
* Example:
112
112
* static struct list_head my_list = LIST_HEAD_INIT(my_list);
113
113
*/
114
- #define LIST_HEAD_INIT (name ) { { &name.n, &name.n } }
114
+ #define LIST_HEAD_INIT (name ) { { &( name) .n, &( name) .n } }
115
115
116
116
/**
117
117
* LIST_HEAD - define and initialize an empty list_head
@@ -145,6 +145,48 @@ static inline void list_head_init(struct list_head *h)
145
145
h -> n .next = h -> n .prev = & h -> n ;
146
146
}
147
147
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
+
148
190
/**
149
191
* list_add - add an entry at the start of a linked list.
150
192
* @h: the list_head to add the node to
@@ -163,10 +205,34 @@ static inline void list_add_(struct list_head *h,
163
205
struct list_node * n ,
164
206
const char * abortstr )
165
207
{
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 ;
170
236
(void )list_debug (h , abortstr );
171
237
}
172
238
@@ -185,11 +251,7 @@ static inline void list_add_tail_(struct list_head *h,
185
251
struct list_node * n ,
186
252
const char * abortstr )
187
253
{
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 );
193
255
}
194
256
195
257
/**
@@ -229,6 +291,21 @@ static inline bool list_empty_nodebug(const struct list_head *h)
229
291
}
230
292
#endif
231
293
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
+
232
309
/**
233
310
* list_del - delete an entry from an (unknown) linked list.
234
311
* @n: the list_node to delete from the list.
@@ -237,7 +314,7 @@ static inline bool list_empty_nodebug(const struct list_head *h)
237
314
* another list, but not deleted again.
238
315
*
239
316
* See also:
240
- * list_del_from()
317
+ * list_del_from(), list_del_init()
241
318
*
242
319
* Example:
243
320
* list_del(&child->list);
@@ -255,6 +332,27 @@ static inline void list_del_(struct list_node *n, const char* abortstr)
255
332
#endif
256
333
}
257
334
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
+
258
356
/**
259
357
* list_del_from - delete an entry from a known linked list.
260
358
* @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)
285
383
list_del (n );
286
384
}
287
385
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
+
288
419
/**
289
420
* list_entry - convert a list_node back into the structure containing it.
290
421
* @n: the list_node
@@ -406,9 +537,29 @@ static inline const void *list_tail_(const struct list_head *h, size_t off)
406
537
* printf("Name: %s\n", child->name);
407
538
*/
408
539
#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))
412
563
413
564
/**
414
565
* 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)
422
573
* @nxt is used to hold the next element, so you can delete @i from the list.
423
574
*
424
575
* Example:
425
- * struct child *next;
426
576
* list_for_each_safe(&parent->children, child, next, list) {
427
577
* list_del(&child->list);
428
578
* parent->num_children--;
@@ -537,23 +687,41 @@ static inline void list_prepend_list_(struct list_head *to,
537
687
list_head_init (from );
538
688
}
539
689
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
+
540
708
/**
541
709
* list_for_each_off - iterate through a list of memory regions.
542
710
* @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.
544
712
* @off: offset(relative to @i) at which list node data resides.
545
713
*
546
714
* This is a low-level wrapper to iterate @i over the entire list, used to
547
715
* implement all oher, more high-level, for-each constructs. It's a for loop,
548
716
* so you can break and continue as normal.
549
717
*
550
718
* 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
552
720
* 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
555
723
* 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
557
725
* caveat emptor.
558
726
*
559
727
* 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,
567
735
* printf("Name: %s\n", child->name);
568
736
*/
569
737
#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)
575
750
576
751
/**
577
752
* list_for_each_safe_off - iterate through a list of memory regions, maybe
578
753
* during deletion
579
754
* @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.
581
756
* @nxt: the structure containing the list_node
582
757
* @off: offset(relative to @i) at which list node data resides.
583
758
*
@@ -590,15 +765,26 @@ static inline void list_prepend_list_(struct list_head *to,
590
765
* printf("Name: %s\n", child->name);
591
766
*/
592
767
#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)
601
769
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)
602
788
603
789
/* Other -off variants. */
604
790
#define list_entry_off (n , type , off ) \
0 commit comments