Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00690365 authored by Sunghan Suh's avatar Sunghan Suh Committed by Olav Haugan
Browse files

staging: zsmalloc: access page->private by using page_private macro



Change-Id: Ia09720c7787bc03c69d01874437bdc619cae8c7e
Signed-off-by: default avatarSunghan Suh <sunghan.suh@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Git-commit: e842b976a88a39b447fc34bd0fcb3c0be0a1d9d9
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git


Signed-off-by: default avatarOlav Haugan <ohaugan@codeaurora.org>
parent 27671df7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)