The patch titled Subject: radix-tree: fix private list warnings has been added to the -mm tree. Its filename is radix-tree-fix-private-list-warnings.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/radix-tree-fix-private-list-warnings.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/radix-tree-fix-private-list-warnings.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Subject: radix-tree: fix private list warnings The newly introduced warning in radix_tree_free_nodes() was testing the wrong variable; it should have been 'old' instead of 'node'. Fixes: ea07b862ac8e ("mm: workingset: fix use-after-free in shadow node shrinker") Link: http://lkml.kernel.org/r/20170118163746.GA32495@xxxxxxxxxxx Signed-off-by: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Signed-off-by: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/radix-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/radix-tree.c~radix-tree-fix-private-list-warnings lib/radix-tree.c --- a/lib/radix-tree.c~radix-tree-fix-private-list-warnings +++ a/lib/radix-tree.c @@ -769,7 +769,7 @@ static void radix_tree_free_nodes(struct struct radix_tree_node *old = child; offset = child->offset + 1; child = child->parent; - WARN_ON_ONCE(!list_empty(&node->private_list)); + WARN_ON_ONCE(!list_empty(&old->private_list)); radix_tree_node_free(old); if (old == entry_to_node(node)) return; _ Patches currently in -mm which might be from mawilcox@xxxxxxxxxxxxx are radix-tree-fix-private-list-warnings.patch find_bit-micro-optimise-find_next__bit.patch find_bit-micro-optimise-find_next__bit-v2.patch reimplement-idr-and-ida-using-the-radix-tree-support-storing-null-in-the-idr.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