From: Sunghan Suh Date: Fri, 12 Jul 2013 07:08:13 +0000 (+0900) Subject: staging: zsmalloc: access page->private by using page_private macro X-Git-Tag: Ubuntu-snapdragon-4.4.0-1029.32~10298^2~694 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e842b976a88a39b447fc34bd0fcb3c0be0a1d9d9;p=mirror_ubuntu-zesty-kernel.git staging: zsmalloc: access page->private by using page_private macro Signed-off-by: Sunghan Suh Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c index 4bb275b2d98f..1a67537dbc56 100644 --- a/drivers/staging/zsmalloc/zsmalloc-main.c +++ b/drivers/staging/zsmalloc/zsmalloc-main.c @@ -423,7 +423,7 @@ static struct page *get_next_page(struct page *page) if (is_last_page(page)) next = NULL; else if (is_first_page(page)) - next = (struct page *)page->private; + next = (struct page *)page_private(page); else next = list_entry(page->lru.next, struct page, lru); @@ -581,7 +581,7 @@ static struct page *alloc_zspage(struct size_class *class, gfp_t flags) first_page->inuse = 0; } if (i == 1) - first_page->private = (unsigned long)page; + set_page_private(first_page, (unsigned long)page); if (i >= 1) page->first_page = first_page; if (i >= 2)