The patch titled More list debugging context has been removed from the -mm tree. Its filename was more-list-debugging-context.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: More list debugging context From: Dave Jones <davej@xxxxxxxxxx> Print the other (hopefully) known good pointer when list_head debugging too, which may yield additional clues. Also fix for 80-columns to win akpm brownie points. Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/list_debug.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff -puN lib/list_debug.c~more-list-debugging-context lib/list_debug.c --- a/lib/list_debug.c~more-list-debugging-context +++ a/lib/list_debug.c @@ -21,13 +21,15 @@ void __list_add(struct list_head *new, struct list_head *next) { if (unlikely(next->prev != prev)) { - printk(KERN_ERR "list_add corruption. next->prev should be %p, but was %p\n", - prev, next->prev); + printk(KERN_ERR "list_add corruption. next->prev should be " + "prev (%p), but was %p. (next=%p).\n", + prev, next->prev, next); BUG(); } if (unlikely(prev->next != next)) { - printk(KERN_ERR "list_add corruption. prev->next should be %p, but was %p\n", - next, prev->next); + printk(KERN_ERR "list_add corruption. prev->next should be " + "next (%p), but was %p. (prev=%p).\n", + next, prev->next, prev); BUG(); } next->prev = new; _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-agpgart.patch git-cpufreq.patch remove-hotplug-cpu-crap-from-cpufreq.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html