blob: 7a5c1c0582d454370fee3af8aad0cd34c40901e3 [file] [log] [blame]
Dave Jones199a9af2006-09-29 01:59:00 -07001/*
2 * Copyright 2006, Red Hat, Inc., Dave Jones
3 * Released under the General Public License (GPL).
4 *
5 * This file contains the linked list implementations for
6 * DEBUG_LIST.
7 */
8
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -05009#include <linux/export.h>
Dave Jones199a9af2006-09-29 01:59:00 -070010#include <linux/list.h>
Paul Gortmaker50af5ea2012-01-20 18:35:53 -050011#include <linux/bug.h>
Paul Gortmakerb116ee42012-01-20 18:46:49 -050012#include <linux/kernel.h>
Dave Jones559f9ba2012-03-14 22:17:39 -040013#include <linux/rculist.h>
Syed Rameez Mustafacf9c1e42013-07-15 11:52:09 -070014#include <linux/bug.h>
Dave Jones199a9af2006-09-29 01:59:00 -070015
16/*
17 * Insert a new entry between two known consecutive entries.
18 *
19 * This is only for internal list manipulation where we know
20 * the prev/next entries already!
21 */
22
23void __list_add(struct list_head *new,
24 struct list_head *prev,
25 struct list_head *next)
26{
Dave Jones924d9ad2008-07-25 01:45:55 -070027 WARN(next->prev != prev,
28 "list_add corruption. next->prev should be "
29 "prev (%p), but was %p. (next=%p).\n",
30 prev, next->prev, next);
31 WARN(prev->next != next,
32 "list_add corruption. prev->next should be "
33 "next (%p), but was %p. (prev=%p).\n",
34 next, prev->next, prev);
Chris Metcalf17a801f2012-05-29 15:07:31 -070035 WARN(new == prev || new == next,
36 "list_add double add: new=%p, prev=%p, next=%p.\n",
37 new, prev, next);
Syed Rameez Mustafacf9c1e42013-07-15 11:52:09 -070038
39 BUG_ON((prev->next != next || next->prev != prev ||
40 new == prev || new == next) && PANIC_CORRUPTION);
41
Dave Jones199a9af2006-09-29 01:59:00 -070042 next->prev = new;
43 new->next = next;
44 new->prev = prev;
Paul E. McKenney1c97be62015-09-20 22:02:17 -070045 WRITE_ONCE(prev->next, new);
Dave Jones199a9af2006-09-29 01:59:00 -070046}
47EXPORT_SYMBOL(__list_add);
48
Linus Torvalds3c18d4d2011-02-18 11:32:28 -080049void __list_del_entry(struct list_head *entry)
50{
51 struct list_head *prev, *next;
52
53 prev = entry->prev;
54 next = entry->next;
55
56 if (WARN(next == LIST_POISON1,
57 "list_del corruption, %p->next is LIST_POISON1 (%p)\n",
58 entry, LIST_POISON1) ||
59 WARN(prev == LIST_POISON2,
60 "list_del corruption, %p->prev is LIST_POISON2 (%p)\n",
61 entry, LIST_POISON2) ||
62 WARN(prev->next != entry,
63 "list_del corruption. prev->next should be %p, "
64 "but was %p\n", entry, prev->next) ||
65 WARN(next->prev != entry,
Syed Rameez Mustafacf9c1e42013-07-15 11:52:09 -070066 "list_del corruption. next->prev should be %p, but was %p\n",
67 entry, next->prev)) {
68 BUG_ON(PANIC_CORRUPTION);
Linus Torvalds3c18d4d2011-02-18 11:32:28 -080069 return;
Syed Rameez Mustafacf9c1e42013-07-15 11:52:09 -070070 }
Linus Torvalds3c18d4d2011-02-18 11:32:28 -080071
72 __list_del(prev, next);
73}
74EXPORT_SYMBOL(__list_del_entry);
75
Dave Jones199a9af2006-09-29 01:59:00 -070076/**
Dave Jones199a9af2006-09-29 01:59:00 -070077 * list_del - deletes entry from list.
78 * @entry: the element to delete from the list.
79 * Note: list_empty on entry does not return true after this, the entry is
80 * in an undefined state.
81 */
82void list_del(struct list_head *entry)
83{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -080084 __list_del_entry(entry);
Dave Jones199a9af2006-09-29 01:59:00 -070085 entry->next = LIST_POISON1;
86 entry->prev = LIST_POISON2;
87}
88EXPORT_SYMBOL(list_del);
Dave Jones559f9ba2012-03-14 22:17:39 -040089
90/*
91 * RCU variants.
92 */
93void __list_add_rcu(struct list_head *new,
94 struct list_head *prev, struct list_head *next)
95{
96 WARN(next->prev != prev,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -070097 "list_add_rcu corruption. next->prev should be prev (%p), but was %p. (next=%p).\n",
Dave Jones559f9ba2012-03-14 22:17:39 -040098 prev, next->prev, next);
99 WARN(prev->next != next,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700100 "list_add_rcu corruption. prev->next should be next (%p), but was %p. (prev=%p).\n",
Dave Jones559f9ba2012-03-14 22:17:39 -0400101 next, prev->next, prev);
102 new->next = next;
103 new->prev = prev;
104 rcu_assign_pointer(list_next_rcu(prev), new);
105 next->prev = new;
106}
107EXPORT_SYMBOL(__list_add_rcu);