1#ifndef _LINUX_LIST_H
2#define _LINUX_LIST_H
3
4#include <linux/types.h>
5#include <linux/stddef.h>
6#include <linux/poison.h>
7#include <linux/const.h>
8#include <linux/kernel.h>
9
10
11
12
13
14
15
16
17
18
19
20#define LIST_HEAD_INIT(name) { &(name), &(name) }
21
22#define LIST_HEAD(name) \
23 struct list_head name = LIST_HEAD_INIT(name)
24
25static inline void INIT_LIST_HEAD(struct list_head *list)
26{
27 WRITE_ONCE(list->next, list);
28 list->prev = list;
29}
30
31
32
33
34
35
36
37#ifndef CONFIG_DEBUG_LIST
38static inline void __list_add(struct list_head *new,
39 struct list_head *prev,
40 struct list_head *next)
41{
42 next->prev = new;
43 new->next = next;
44 new->prev = prev;
45 WRITE_ONCE(prev->next, new);
46}
47#else
48extern void __list_add(struct list_head *new,
49 struct list_head *prev,
50 struct list_head *next);
51#endif
52
53
54
55
56
57
58
59
60
61static inline void list_add(struct list_head *new, struct list_head *head)
62{
63 __list_add(new, head, head->next);
64}
65
66
67
68
69
70
71
72
73
74
75static inline void list_add_tail(struct list_head *new, struct list_head *head)
76{
77 __list_add(new, head->prev, head);
78}
79
80
81
82
83
84
85
86
87static inline void __list_del(struct list_head * prev, struct list_head * next)
88{
89 next->prev = prev;
90 WRITE_ONCE(prev->next, next);
91}
92
93
94
95
96
97
98
99#ifndef CONFIG_DEBUG_LIST
100static inline void __list_del_entry(struct list_head *entry)
101{
102 __list_del(entry->prev, entry->next);
103}
104
105static inline void list_del(struct list_head *entry)
106{
107 __list_del(entry->prev, entry->next);
108 entry->next = LIST_POISON1;
109 entry->prev = LIST_POISON2;
110}
111#else
112extern void __list_del_entry(struct list_head *entry);
113extern void list_del(struct list_head *entry);
114#endif
115
116
117
118
119
120
121
122
123static inline void list_replace(struct list_head *old,
124 struct list_head *new)
125{
126 new->next = old->next;
127 new->next->prev = new;
128 new->prev = old->prev;
129 new->prev->next = new;
130}
131
132static inline void list_replace_init(struct list_head *old,
133 struct list_head *new)
134{
135 list_replace(old, new);
136 INIT_LIST_HEAD(old);
137}
138
139
140
141
142
143static inline void list_del_init(struct list_head *entry)
144{
145 __list_del_entry(entry);
146 INIT_LIST_HEAD(entry);
147}
148
149
150
151
152
153
154static inline void list_move(struct list_head *list, struct list_head *head)
155{
156 __list_del_entry(list);
157 list_add(list, head);
158}
159
160
161
162
163
164
165static inline void list_move_tail(struct list_head *list,
166 struct list_head *head)
167{
168 __list_del_entry(list);
169 list_add_tail(list, head);
170}
171
172
173
174
175
176
177static inline int list_is_last(const struct list_head *list,
178 const struct list_head *head)
179{
180 return list->next == head;
181}
182
183
184
185
186
187static inline int list_empty(const struct list_head *head)
188{
189 return READ_ONCE(head->next) == head;
190}
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205static inline int list_empty_careful(const struct list_head *head)
206{
207 struct list_head *next = head->next;
208 return (next == head) && (next == head->prev);
209}
210
211
212
213
214
215static inline void list_rotate_left(struct list_head *head)
216{
217 struct list_head *first;
218
219 if (!list_empty(head)) {
220 first = head->next;
221 list_move_tail(first, head);
222 }
223}
224
225
226
227
228
229static inline int list_is_singular(const struct list_head *head)
230{
231 return !list_empty(head) && (head->next == head->prev);
232}
233
234static inline void __list_cut_position(struct list_head *list,
235 struct list_head *head, struct list_head *entry)
236{
237 struct list_head *new_first = entry->next;
238 list->next = head->next;
239 list->next->prev = list;
240 list->prev = entry;
241 entry->next = list;
242 head->next = new_first;
243 new_first->prev = head;
244}
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260static inline void list_cut_position(struct list_head *list,
261 struct list_head *head, struct list_head *entry)
262{
263 if (list_empty(head))
264 return;
265 if (list_is_singular(head) &&
266 (head->next != entry && head != entry))
267 return;
268 if (entry == head)
269 INIT_LIST_HEAD(list);
270 else
271 __list_cut_position(list, head, entry);
272}
273
274static inline void __list_splice(const struct list_head *list,
275 struct list_head *prev,
276 struct list_head *next)
277{
278 struct list_head *first = list->next;
279 struct list_head *last = list->prev;
280
281 first->prev = prev;
282 prev->next = first;
283
284 last->next = next;
285 next->prev = last;
286}
287
288
289
290
291
292
293static inline void list_splice(const struct list_head *list,
294 struct list_head *head)
295{
296 if (!list_empty(list))
297 __list_splice(list, head, head->next);
298}
299
300
301
302
303
304
305static inline void list_splice_tail(struct list_head *list,
306 struct list_head *head)
307{
308 if (!list_empty(list))
309 __list_splice(list, head->prev, head);
310}
311
312
313
314
315
316
317
318
319static inline void list_splice_init(struct list_head *list,
320 struct list_head *head)
321{
322 if (!list_empty(list)) {
323 __list_splice(list, head, head->next);
324 INIT_LIST_HEAD(list);
325 }
326}
327
328
329
330
331
332
333
334
335
336static inline void list_splice_tail_init(struct list_head *list,
337 struct list_head *head)
338{
339 if (!list_empty(list)) {
340 __list_splice(list, head->prev, head);
341 INIT_LIST_HEAD(list);
342 }
343}
344
345
346
347
348
349
350
351#define list_entry(ptr, type, member) \
352 container_of(ptr, type, member)
353
354
355
356
357
358
359
360
361
362#define list_first_entry(ptr, type, member) \
363 list_entry((ptr)->next, type, member)
364
365
366
367
368
369
370
371
372
373#define list_last_entry(ptr, type, member) \
374 list_entry((ptr)->prev, type, member)
375
376
377
378
379
380
381
382
383
384#define list_first_entry_or_null(ptr, type, member) ({ \
385 struct list_head *head__ = (ptr); \
386 struct list_head *pos__ = READ_ONCE(head__->next); \
387 pos__ != head__ ? list_entry(pos__, type, member) : NULL; \
388})
389
390
391
392
393
394
395#define list_next_entry(pos, member) \
396 list_entry((pos)->member.next, typeof(*(pos)), member)
397
398
399
400
401
402
403#define list_prev_entry(pos, member) \
404 list_entry((pos)->member.prev, typeof(*(pos)), member)
405
406
407
408
409
410
411#define list_for_each(pos, head) \
412 for (pos = (head)->next; pos != (head); pos = pos->next)
413
414
415
416
417
418
419#define list_for_each_prev(pos, head) \
420 for (pos = (head)->prev; pos != (head); pos = pos->prev)
421
422
423
424
425
426
427
428#define list_for_each_safe(pos, n, head) \
429 for (pos = (head)->next, n = pos->next; pos != (head); \
430 pos = n, n = pos->next)
431
432
433
434
435
436
437
438#define list_for_each_prev_safe(pos, n, head) \
439 for (pos = (head)->prev, n = pos->prev; \
440 pos != (head); \
441 pos = n, n = pos->prev)
442
443
444
445
446
447
448
449#define list_for_each_entry(pos, head, member) \
450 for (pos = list_first_entry(head, typeof(*pos), member); \
451 &pos->member != (head); \
452 pos = list_next_entry(pos, member))
453
454
455
456
457
458
459
460#define list_for_each_entry_reverse(pos, head, member) \
461 for (pos = list_last_entry(head, typeof(*pos), member); \
462 &pos->member != (head); \
463 pos = list_prev_entry(pos, member))
464
465
466
467
468
469
470
471
472
473#define list_prepare_entry(pos, head, member) \
474 ((pos) ? : list_entry(head, typeof(*pos), member))
475
476
477
478
479
480
481
482
483
484
485#define list_for_each_entry_continue(pos, head, member) \
486 for (pos = list_next_entry(pos, member); \
487 &pos->member != (head); \
488 pos = list_next_entry(pos, member))
489
490
491
492
493
494
495
496
497
498
499#define list_for_each_entry_continue_reverse(pos, head, member) \
500 for (pos = list_prev_entry(pos, member); \
501 &pos->member != (head); \
502 pos = list_prev_entry(pos, member))
503
504
505
506
507
508
509
510
511
512#define list_for_each_entry_from(pos, head, member) \
513 for (; &pos->member != (head); \
514 pos = list_next_entry(pos, member))
515
516
517
518
519
520
521
522
523#define list_for_each_entry_safe(pos, n, head, member) \
524 for (pos = list_first_entry(head, typeof(*pos), member), \
525 n = list_next_entry(pos, member); \
526 &pos->member != (head); \
527 pos = n, n = list_next_entry(n, member))
528
529
530
531
532
533
534
535
536
537
538
539#define list_for_each_entry_safe_continue(pos, n, head, member) \
540 for (pos = list_next_entry(pos, member), \
541 n = list_next_entry(pos, member); \
542 &pos->member != (head); \
543 pos = n, n = list_next_entry(n, member))
544
545
546
547
548
549
550
551
552
553
554
555#define list_for_each_entry_safe_from(pos, n, head, member) \
556 for (n = list_next_entry(pos, member); \
557 &pos->member != (head); \
558 pos = n, n = list_next_entry(n, member))
559
560
561
562
563
564
565
566
567
568
569
570#define list_for_each_entry_safe_reverse(pos, n, head, member) \
571 for (pos = list_last_entry(head, typeof(*pos), member), \
572 n = list_prev_entry(pos, member); \
573 &pos->member != (head); \
574 pos = n, n = list_prev_entry(n, member))
575
576
577
578
579
580
581
582
583
584
585
586
587
588#define list_safe_reset_next(pos, n, member) \
589 n = list_next_entry(pos, member)
590
591
592
593
594
595
596
597
598#define HLIST_HEAD_INIT { .first = NULL }
599#define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
600#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
601static inline void INIT_HLIST_NODE(struct hlist_node *h)
602{
603 h->next = NULL;
604 h->pprev = NULL;
605}
606
607static inline int hlist_unhashed(const struct hlist_node *h)
608{
609 return !h->pprev;
610}
611
612static inline int hlist_empty(const struct hlist_head *h)
613{
614 return !READ_ONCE(h->first);
615}
616
617static inline void __hlist_del(struct hlist_node *n)
618{
619 struct hlist_node *next = n->next;
620 struct hlist_node **pprev = n->pprev;
621
622 WRITE_ONCE(*pprev, next);
623 if (next)
624 next->pprev = pprev;
625}
626
627static inline void hlist_del(struct hlist_node *n)
628{
629 __hlist_del(n);
630 n->next = LIST_POISON1;
631 n->pprev = LIST_POISON2;
632}
633
634static inline void hlist_del_init(struct hlist_node *n)
635{
636 if (!hlist_unhashed(n)) {
637 __hlist_del(n);
638 INIT_HLIST_NODE(n);
639 }
640}
641
642static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
643{
644 struct hlist_node *first = h->first;
645 n->next = first;
646 if (first)
647 first->pprev = &n->next;
648 WRITE_ONCE(h->first, n);
649 n->pprev = &h->first;
650}
651
652
653static inline void hlist_add_before(struct hlist_node *n,
654 struct hlist_node *next)
655{
656 n->pprev = next->pprev;
657 n->next = next;
658 next->pprev = &n->next;
659 WRITE_ONCE(*(n->pprev), n);
660}
661
662static inline void hlist_add_behind(struct hlist_node *n,
663 struct hlist_node *prev)
664{
665 n->next = prev->next;
666 WRITE_ONCE(prev->next, n);
667 n->pprev = &prev->next;
668
669 if (n->next)
670 n->next->pprev = &n->next;
671}
672
673
674static inline void hlist_add_fake(struct hlist_node *n)
675{
676 n->pprev = &n->next;
677}
678
679static inline bool hlist_fake(struct hlist_node *h)
680{
681 return h->pprev == &h->next;
682}
683
684
685
686
687
688static inline bool
689hlist_is_singular_node(struct hlist_node *n, struct hlist_head *h)
690{
691 return !n->next && n->pprev == &h->first;
692}
693
694
695
696
697
698static inline void hlist_move_list(struct hlist_head *old,
699 struct hlist_head *new)
700{
701 new->first = old->first;
702 if (new->first)
703 new->first->pprev = &new->first;
704 old->first = NULL;
705}
706
707#define hlist_entry(ptr, type, member) container_of(ptr,type,member)
708
709#define hlist_for_each(pos, head) \
710 for (pos = (head)->first; pos ; pos = pos->next)
711
712#define hlist_for_each_safe(pos, n, head) \
713 for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
714 pos = n)
715
716#define hlist_entry_safe(ptr, type, member) \
717 ({ typeof(ptr) ____ptr = (ptr); \
718 ____ptr ? hlist_entry(____ptr, type, member) : NULL; \
719 })
720
721
722
723
724
725
726
727#define hlist_for_each_entry(pos, head, member) \
728 for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
729 pos; \
730 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
731
732
733
734
735
736
737#define hlist_for_each_entry_continue(pos, member) \
738 for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member);\
739 pos; \
740 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
741
742
743
744
745
746
747#define hlist_for_each_entry_from(pos, member) \
748 for (; pos; \
749 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
750
751
752
753
754
755
756
757
758#define hlist_for_each_entry_safe(pos, n, head, member) \
759 for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\
760 pos && ({ n = pos->member.next; 1; }); \
761 pos = hlist_entry_safe(n, typeof(*pos), member))
762
763#endif
764