The patch titled Subject: radix-tree-replace-preallocated-node-array-with-linked-list-fix has been removed from the -mm tree. Its filename was radix-tree-replace-preallocated-node-array-with-linked-list-fix.patch This patch was dropped because it was folded into radix-tree-replace-preallocated-node-array-with-linked-list.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: radix-tree-replace-preallocated-node-array-with-linked-list-fix fix comment, coding style Cc: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/radix-tree.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN lib/radix-tree.c~radix-tree-replace-preallocated-node-array-with-linked-list-fix lib/radix-tree.c --- a/lib/radix-tree.c~radix-tree-replace-preallocated-node-array-with-linked-list-fix +++ a/lib/radix-tree.c @@ -65,7 +65,7 @@ static struct kmem_cache *radix_tree_nod */ struct radix_tree_preload { int nr; - /* nodes->private_data points to next prealocated node */ + /* nodes->private_data points to next preallocated node */ struct radix_tree_node *nodes; }; static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, }; @@ -270,8 +270,9 @@ static int __radix_tree_preload(gfp_t gf node->private_data = rtp->nodes; rtp->nodes = node; rtp->nr++; - } else + } else { kmem_cache_free(radix_tree_node_cachep, node); + } } ret = 0; out: _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch s390-mm-change-hpage_shift-type-to-int.patch zswap-runtime-enable-disable.patch prctl-more-prctlpr_set_mm_-checks.patch proc-fix-page_size-limit-of-proc-pid-cmdline.patch maintainers-davidlohr-has-moved.patch bitmap-remove-explicit-newline-handling-using-scnprintf-format-string.patch radix-tree-replace-preallocated-node-array-with-linked-list.patch checkpatch-emit-an-error-when-theres-a-diff-in-a-changelog.patch init-do_mounts-add-create_dev-failure-log-fix.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