a724218360a parent 4b57ad939263935e4e3aec4d74a11dd02a3421e4 author Julia Lawall 1341747460 +0200 committer Pekka Enberg 1341824674 +0300 slub: remove invalid reference to list iterator variable If list_for_each_entry, etc complete a traversal of the list, the iterator variable ends up pointing to an address at an offset from the list head, and not a meaningful structure. Thus this value should not be used after the end of the iterator. The patch replaces s->name by al->name, which is referenced nearby. This problem was found using Coccinelle (http://coccinelle.lip6.fr/). Signed-off-by: Julia Lawall Signed-off-by: Pekka Enberg ì2