[POWERPC] Fix array indexing error in rheap grow()
authorTimur Tabi <timur@freescale.com>
Sat, 27 Jan 2007 23:41:49 +0000 (17:41 -0600)
committerPaul Mackerras <paulus@samba.org>
Wed, 7 Feb 2007 03:03:19 +0000 (14:03 +1100)
commit4942bd80e83d13bf394df4a8109bee39d861820f
tree894ec8480e5dbffe59fe8fa798c50f44d174a8b1
parent5f3162f0664be49c72c1e6ce4a46848f9d96d790
[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>
arch/powerpc/lib/rheap.c