summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimur Tabi2007-01-28 00:41:49 +0100
committerPaul Mackerras2007-02-07 04:03:19 +0100
commit4942bd80e83d13bf394df4a8109bee39d861820f (patch)
tree894ec8480e5dbffe59fe8fa798c50f44d174a8b1
parent[POWERPC] ps3: ps3_defconfig updates (diff)
downloadkernel-qcow2-linux-4942bd80e83d13bf394df4a8109bee39d861820f.tar.gz
kernel-qcow2-linux-4942bd80e83d13bf394df4a8109bee39d861820f.tar.xz
kernel-qcow2-linux-4942bd80e83d13bf394df4a8109bee39d861820f.zip
[POWERPC] Fix array indexing error in rheap grow()
The grow() function in the rheap library allocates a larger array of blocks, copies the contents of the old blocks array to the newly allocated array and fixes the list_head pointers after the copy. At the end, the new blocks must be enqueued to the empty_list of the rh_info_t structure. This patch fixes a bug where the code was indexing past the end of the array when enqueueing blocks. The UCC ethernet driver, which uses the rheap allocator, experiences kernel panics because of this bug. Signed-off-by: Ionut Nicu <ionut.nicu@freescale.com> Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r--arch/powerpc/lib/rheap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/lib/rheap.c b/arch/powerpc/lib/rheap.c
index 57bf991ccd6e..4bbda6b2be45 100644
--- a/arch/powerpc/lib/rheap.c
+++ b/arch/powerpc/lib/rheap.c
@@ -85,7 +85,8 @@ static int grow(rh_info_t * info, int max_blocks)
info->flags &= ~RHIF_STATIC_BLOCK;
/* add all new blocks to the free list */
- for (i = 0, blk = block + info->max_blocks; i < new_blocks; i++, blk++)
+ blk = block + info->max_blocks - new_blocks;
+ for (i = 0; i < new_blocks; i++, blk++)
list_add(&blk->list, &info->empty_list);
return 0;