Commit 6cfddb26 authored by Michal Hocko's avatar Michal Hocko Committed by Linus Torvalds
Browse files

memcg: page_cgroup array is never stored on reserved pages



KAMEZAWA Hiroyuki noted that free_pages_cgroup doesn't have to check for
PageReserved because we never store the array on reserved pages (neither
alloc_pages_exact nor vmalloc use those pages).

So we can replace the check by a BUG_ON.

Signed-off-by: default avatarMichal Hocko <mhocko@suse.cz>
Acked-by: default avatarKAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Balbir Singh <balbir@in.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent dde79e00
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -153,13 +153,13 @@ static void free_page_cgroup(void *addr)
		vfree(addr);
	} else {
		struct page *page = virt_to_page(addr);
		if (!PageReserved(page)) { /* Is bootmem ? */
		size_t table_size =
			sizeof(struct page_cgroup) * PAGES_PER_SECTION;

		BUG_ON(PageReserved(page));
		free_pages_exact(addr, table_size);
	}
}
}
#endif

static int __init_refok init_section_page_cgroup(unsigned long pfn)