staging: zsmalloc: access page->private by using page_private macro
authorSunghan Suh <sunghan.suh@samsung.com>
Fri, 12 Jul 2013 07:08:13 +0000 (16:08 +0900)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:47:14 +0000 (11:47 +0900)
Change-Id: I3fb9c7c58baeac6268961750ed859518c421b770
Signed-off-by: Sunghan Suh <sunghan.suh@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/zsmalloc/zsmalloc-main.c

index cdc118f..3b950e5 100644 (file)
@@ -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);
 
@@ -590,7 +590,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)