diff options
author | 2016-02-22 20:12:13 +0900 | |
---|---|---|
committer | 2016-02-22 20:12:13 +0900 | |
commit | 8174b35f1d9b54b740a935410c7b3891e3e2a119 (patch) | |
tree | 95427a4dd7248c41547a9a8d4afcfe7aa9a3a9fd /lib/list_debug.c | |
parent | ASoC: mediatek: Enable 33bit memory address to support 4GB DRAM (diff) | |
parent | Linux 4.5-rc5 (diff) | |
download | wireguard-linux-8174b35f1d9b54b740a935410c7b3891e3e2a119.tar.xz wireguard-linux-8174b35f1d9b54b740a935410c7b3891e3e2a119.zip |
Merge tag 'v4.5-rc5' into asoc-mtk
Linux 4.5-rc5
Diffstat (limited to 'lib/list_debug.c')
-rw-r--r-- | lib/list_debug.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/list_debug.c b/lib/list_debug.c index c24c2f7e296f..3345a089ef7b 100644 --- a/lib/list_debug.c +++ b/lib/list_debug.c @@ -12,6 +12,13 @@ #include <linux/kernel.h> #include <linux/rculist.h> +static struct list_head force_poison; +void list_force_poison(struct list_head *entry) +{ + entry->next = &force_poison; + entry->prev = &force_poison; +} + /* * Insert a new entry between two known consecutive entries. * @@ -23,6 +30,8 @@ void __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) { + WARN(new->next == &force_poison || new->prev == &force_poison, + "list_add attempted on force-poisoned entry\n"); WARN(next->prev != prev, "list_add corruption. next->prev should be " "prev (%p), but was %p. (next=%p).\n", @@ -37,7 +46,7 @@ void __list_add(struct list_head *new, next->prev = new; new->next = next; new->prev = prev; - prev->next = new; + WRITE_ONCE(prev->next, new); } EXPORT_SYMBOL(__list_add); |