diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2007-11-14 16:58:35 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-14 18:45:36 -0800 |
commit | cc550defe9790b495c96fafabc5a6528dc586f24 (patch) | |
tree | e88689d55d9897c96287a6e92d0123ac8d59c29b /mm | |
parent | e9b5a495dc23f58ecaa9517f1ff4dd9ac724935f (diff) | |
download | linux-cc550defe9790b495c96fafabc5a6528dc586f24.tar.gz linux-cc550defe9790b495c96fafabc5a6528dc586f24.tar.xz |
slab: fix typo in allocation failure handling
This patch fixes wrong array index in allocation failure handling.
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slab.c b/mm/slab.c index cfa6be4e378e..c31cd3682a0b 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -1043,7 +1043,7 @@ static struct array_cache **alloc_alien_cache(int node, int limit) } 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; |