[PW_SID:1053085] arch, mm: consolidate empty_zero_page#1472
[PW_SID:1053085] arch, mm: consolidate empty_zero_page#1472linux-riscv-bot wants to merge 5 commits intoworkflowfrom
Conversation
nommu architectures have empty_zero_page and define ZERO_PAGE() and although they don't really use it to populate page tables, there is no reason to hardwire !MMU implementation of is_zero_pfn() and my_zero_pfn() to 0. Drop #ifdef CONFIG_MMU around implementations of is_zero_pfn() and my_zero_pfn() and remove !MMU version. While on it, make zero_pfn __ro_after_init. Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Acked-by: David Hildenbrand (Arm) <david@kernel.org> Acked-by: Liam R. Howlett <Liam.Howlett@oracle.com> Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
my_zero_pfn() is a silly name. Rename zero_pfn variable to zero_page_pfn and my_zero_pfn() function to zero_pfn(). While on it, move extern declarations of zero_page_pfn outside the functions that use it and add a comment about what ZERO_PAGE is. Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Acked-by: David Hildenbrand (Arm) <david@kernel.org> Acked-by: Vlastimil Babka <vbabka@suse.cz> Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com> Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Reduce 22 declarations of empty_zero_page to 3 and 23 declarations of ZERO_PAGE() to 4. Every architecture defines empty_zero_page that way or another, but for the most of them it is always a page aligned page in BSS and most definitions of ZERO_PAGE do virt_to_page(empty_zero_page). Move Linus vetted x86 definition of empty_zero_page and ZERO_PAGE() to the core MM and drop these definitions in architectures that do not implement colored zero page (MIPS and s390). ZERO_PAGE() remains a macro because turning it to a wrapper for a static inline causes severe pain in header dependencies. For the most part the change is mechanical, with these being noteworthy: * alpha: aliased empty_zero_page with ZERO_PGE that was also used for boot parameters. Switching to a generic empty_zero_page removes the aliasing and keeps ZERO_PGE for boot parameters only * arm64: uses __pa_symbol() in ZERO_PAGE() so that definition of ZERO_PAGE() is kept intact. * m68k/parisc/um: allocated empty_zero_page from memblock, although they do not support zero page coloring and having it in BSS will work fine. * sparc64 can have empty_zero_page in BSS rather allocate it, but it can't use virt_to_page() for BSS. Keep it's definition of ZERO_PAGE() but instead of allocating it, make mem_map_zero point to empty_zero_page. * sh: used empty_zero_page for boot parameters at the very early boot. Rename the parameters page to boot_params_page and let sh use the generic empty_zero_page. * hexagon: had an amusing comment about empty_zero_page /* A handy thing to have if one has the RAM. Declared in head.S */ that unfortunately had to go :) Acked-by: Helge Deller <deller@gmx.de> # parisc Tested-by: Helge Deller <deller@gmx.de> # parisc Reviewed-by: Christophe Leroy (CS GROUP) <chleroy@kernel.org> Acked-by: Dave Hansen <dave.hansen@linux.intel.com> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Acked-by: Magnus Lindholm <linmag7@gmail.com> Acked-by: Dinh Nguyen <dinguyen@kernel.org> Acked-by: Andreas Larsson <andreas@gaisler.com> #sparc Acked-by: David Hildenbrand (Arm) <david@kernel.org> Acked-by: Liam R. Howlett <Liam.Howlett@oracle.com> Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
For most architectures every invocation of ZERO_PAGE() does virt_to_page(empty_zero_page). But empty_zero_page is in BSS and it is enough to get its struct page once at initialization time and then use it whenever a zero page should be accessed. Add yet another __zero_page variable that will be initialized as virt_to_page(empty_zero_page) for most architectures in a weak arch_setup_zero_pages() function. For architectures that use colored zero pages (MIPS and s390) rename their setup_zero_pages() to arch_setup_zero_pages() and make it global rather than static. For architectures that cannot use virt_to_page() for BSS (arm64 and sparc64) add override of arch_setup_zero_pages(). Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Acked-by: David Hildenbrand (Arm) <david@kernel.org> Acked-by: Liam R. Howlett <Liam.Howlett@oracle.com> Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 1: "[v3,1/4] mm: don't special case !MMU for is_zero_pfn() and my_zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
128fa5d to
12ead3f
Compare
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 2: "[v3,2/4] mm: rename my_zero_pfn() to zero_pfn()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
|
Patch 4: "[v3,4/4] mm: cache struct page for empty_zero_page and return it from ZERO_PAGE()" |
58114d9 to
103798e
Compare
PR for series 1053085 applied to workflow
Name: arch, mm: consolidate empty_zero_page
URL: https://patchwork.kernel.org/project/linux-riscv/list/?series=1053085
Version: 3