]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commit
mm, debug_pagealloc: use a page type instead of page_ext flag
authorVlastimil Babka <vbabka@suse.cz>
Fri, 12 Jul 2019 03:55:13 +0000 (20:55 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 12 Jul 2019 18:05:43 +0000 (11:05 -0700)
commit3972f6bb1c6ae1d32dcf2e4ff635d24b77f26dcb
tree24a0c4a24d8e1afdcb7ca5dd088c1bd4d191a9b9
parent4462b32c9285b521ef378907aa66a5ca485aae41
mm, debug_pagealloc: use a page type instead of page_ext flag

When debug_pagealloc is enabled, we currently allocate the page_ext
array to mark guard pages with the PAGE_EXT_DEBUG_GUARD flag.  Now that
we have the page_type field in struct page, we can use that instead, as
guard pages are neither PageSlab nor mapped to userspace.  This reduces
memory overhead when debug_pagealloc is enabled and there are no other
features requiring the page_ext array.

Link: http://lkml.kernel.org/r/20190603143451.27353-4-vbabka@suse.cz
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Documentation/admin-guide/kernel-parameters.txt
include/linux/mm.h
include/linux/page-flags.h
include/linux/page_ext.h
mm/Kconfig.debug
mm/page_alloc.c
mm/page_ext.c