The patch titled slab: fix typo in allocation failure handling has been removed from the -mm tree. Its filename was slab-fix-typo-in-allocation-failure-handling.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: slab: fix typo in allocation failure handling From: "Akinobu Mita" <akinobu.mita@xxxxxxxxx> This patch fixes wrong array index in allocation failure handling. Cc: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Acked-by: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/slab.c~slab-fix-typo-in-allocation-failure-handling mm/slab.c --- a/mm/slab.c~slab-fix-typo-in-allocation-failure-handling +++ a/mm/slab.c @@ -1043,7 +1043,7 @@ static struct array_cache **alloc_alien_ } ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d); if (!ac_ptr[i]) { - for (i--; i <= 0; i--) + for (i--; i >= 0; i--) kfree(ac_ptr[i]); kfree(ac_ptr); return NULL; _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.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