From: Linus Torvalds Date: Fri, 18 Feb 2011 19:32:28 +0000 (-0800) Subject: Expand CONFIG_DEBUG_LIST to several other list operations X-Git-Tag: v2.6.38-rc6~23 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c18d4de86e4a7f93815c081e50e0543fa27200f;p=pandora-kernel.git Expand CONFIG_DEBUG_LIST to several other list operations When list debugging is enabled, we aim to readably show list corruption errors, and the basic list_add/list_del operations end up having extra debugging code in them to do some basic validation of the list entries. However, "list_del_init()" and "list_move[_tail]()" ended up avoiding the debug code due to how they were written. This fixes that. So the _next_ time we have list_move() problems with stale list entries, we'll hopefully have an easier time finding them.. Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed