Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317371
b: refs/heads/master
c: b4b700c
h: refs/heads/master
i:
  317369: 5c37299
  317367: c6d545e
v: v3
  • Loading branch information
Seth Jennings authored and Greg Kroah-Hartman committed Jun 14, 2012
1 parent c64d9e9 commit 21c6d6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03ae8189ee6cab3d4af3e39136105f02d7c35883
refs/heads/master: b4b700c5a61c6e6db976f60d4eb6ad369e838aa9
4 changes: 2 additions & 2 deletions trunk/drivers/staging/zsmalloc/zsmalloc-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
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:
Expand All @@ -415,7 +415,7 @@ static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
*/
error = -ENOMEM;
for (i = 0; i < class->pages_per_zspage; i++) {
struct page *page, *prev_page;
struct page *page;

page = alloc_page(flags);
if (!page)
Expand Down

0 comments on commit 21c6d6f

Please sign in to comment.