Commit b4b700c5 authored by Seth Jennings's avatar Seth Jennings Committed by Greg Kroah-Hartman

staging: zsmalloc: fix uninit'ed variable warning

This patch fixes an uninitialized variable warning in
alloc_zspage().  It also fixes the secondary issue of
prev_page leaving scope on each loop iteration.  The only
reason this ever worked was because prev_page was occupying
the same space on the stack on each iteration.
Signed-off-by: default avatarSeth Jennings <sjenning@linux.vnet.ibm.com>
Reported-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03ae8189
...@@ -400,7 +400,7 @@ static void init_zspage(struct page *first_page, struct size_class *class) ...@@ -400,7 +400,7 @@ static void init_zspage(struct page *first_page, struct size_class *class)
static struct page *alloc_zspage(struct size_class *class, gfp_t flags) static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
{ {
int i, error; int i, error;
struct page *first_page = NULL; struct page *first_page = NULL, *uninitialized_var(prev_page);
/* /*
* Allocate individual pages and link them together as: * Allocate individual pages and link them together as:
...@@ -415,7 +415,7 @@ static struct page *alloc_zspage(struct size_class *class, gfp_t flags) ...@@ -415,7 +415,7 @@ static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
*/ */
error = -ENOMEM; error = -ENOMEM;
for (i = 0; i < class->pages_per_zspage; i++) { for (i = 0; i < class->pages_per_zspage; i++) {
struct page *page, *prev_page; struct page *page;
page = alloc_page(flags); page = alloc_page(flags);
if (!page) if (!page)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment