mm: define default value for FIRST_USER_ADDRESS
Currently most platforms define FIRST_USER_ADDRESS as 0UL duplication the same code all over. Instead just define a generic default value (i.e 0UL) for FIRST_USER_ADDRESS and let the platforms override when required. This makes it much cleaner with reduced code. The default FIRST_USER_ADDRESS here would be skipped in <linux/pgtable.h> when the given platform overrides its value via <asm/pgtable.h>. Link: https://lkml.kernel.org/r/1620615725-24623-1-git-send-email-anshuman.khandual@arm.com Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> [m68k] Acked-by: Guo Ren <guoren@kernel.org> [csky] Acked-by: Stafford Horne <shorne@gmail.com> [openrisc] Acked-by: Catalin Marinas <catalin.marinas@arm.com> [arm64] Acked-by: Mike Rapoport <rppt@linux.ibm.com> Acked-by: Palmer Dabbelt <palmerdabbelt@google.com> [RISC-V] Cc: Richard Henderson <rth@twiddle.net> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will@kernel.org> Cc: Guo Ren <guoren@kernel.org> Cc: Brian Cain <bcain@codeaurora.org> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Michal Simek <monstr@monstr.eu> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Ley Foon Tan <ley.foon.tan@intel.com> Cc: Jonas Bonn <jonas@southpole.se> Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Cc: Stafford Horne <shorne@gmail.com> Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: "David S. Miller" <davem@davemloft.net> Cc: Jeff Dike <jdike@addtoit.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Chris Zankel <chris@zankel.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c4ffefd16d
commit
fac7757e1f
@ -46,7 +46,6 @@ struct vm_area_struct;
|
|||||||
#define PTRS_PER_PMD (1UL << (PAGE_SHIFT-3))
|
#define PTRS_PER_PMD (1UL << (PAGE_SHIFT-3))
|
||||||
#define PTRS_PER_PGD (1UL << (PAGE_SHIFT-3))
|
#define PTRS_PER_PGD (1UL << (PAGE_SHIFT-3))
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/* Number of pointers that fit on a page: this will go away. */
|
/* Number of pointers that fit on a page: this will go away. */
|
||||||
#define PTRS_PER_PAGE (1UL << (PAGE_SHIFT-3))
|
#define PTRS_PER_PAGE (1UL << (PAGE_SHIFT-3))
|
||||||
|
@ -222,12 +222,6 @@
|
|||||||
*/
|
*/
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
||||||
|
|
||||||
/*
|
|
||||||
* No special requirements for lowest virtual address we permit any user space
|
|
||||||
* mapping to be mapped at.
|
|
||||||
*/
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************
|
/****************************************************************
|
||||||
* Bucket load of VM Helpers
|
* Bucket load of VM Helpers
|
||||||
|
@ -26,8 +26,6 @@
|
|||||||
|
|
||||||
#define vmemmap ((struct page *)VMEMMAP_START - (memstart_addr >> PAGE_SHIFT))
|
#define vmemmap ((struct page *)VMEMMAP_START - (memstart_addr >> PAGE_SHIFT))
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
#include <asm/cmpxchg.h>
|
#include <asm/cmpxchg.h>
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#define PGDIR_MASK (~(PGDIR_SIZE-1))
|
#define PGDIR_MASK (~(PGDIR_SIZE-1))
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD (PAGE_OFFSET/PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (PAGE_OFFSET/PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* C-SKY is two-level paging structure:
|
* C-SKY is two-level paging structure:
|
||||||
|
@ -155,9 +155,6 @@ extern unsigned long _dflt_cache_att;
|
|||||||
|
|
||||||
extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; /* located in head.S */
|
extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; /* located in head.S */
|
||||||
|
|
||||||
/* Seems to be zero even in architectures where the zero page is firewalled? */
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/* HUGETLB not working currently */
|
/* HUGETLB not working currently */
|
||||||
#ifdef CONFIG_HUGETLB_PAGE
|
#ifdef CONFIG_HUGETLB_PAGE
|
||||||
#define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE)
|
#define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE)
|
||||||
|
@ -128,7 +128,6 @@
|
|||||||
#define PTRS_PER_PGD_SHIFT PTRS_PER_PTD_SHIFT
|
#define PTRS_PER_PGD_SHIFT PTRS_PER_PTD_SHIFT
|
||||||
#define PTRS_PER_PGD (1UL << PTRS_PER_PGD_SHIFT)
|
#define PTRS_PER_PGD (1UL << PTRS_PER_PGD_SHIFT)
|
||||||
#define USER_PTRS_PER_PGD (5*PTRS_PER_PGD/8) /* regions 0-4 are user regions */
|
#define USER_PTRS_PER_PGD (5*PTRS_PER_PGD/8) /* regions 0-4 are user regions */
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All the normal masks have the "page accessed" bits on, as any time
|
* All the normal masks have the "page accessed" bits on, as any time
|
||||||
|
@ -72,7 +72,6 @@
|
|||||||
#define PTRS_PER_PGD 128
|
#define PTRS_PER_PGD 128
|
||||||
#endif
|
#endif
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/* Virtual address region for use by kernel_map() */
|
/* Virtual address region for use by kernel_map() */
|
||||||
#ifdef CONFIG_SUN3
|
#ifdef CONFIG_SUN3
|
||||||
|
@ -25,8 +25,6 @@ extern int mem_init_done;
|
|||||||
#include <asm/mmu.h>
|
#include <asm/mmu.h>
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
extern unsigned long va_to_phys(unsigned long address);
|
extern unsigned long va_to_phys(unsigned long address);
|
||||||
extern pte_t *va_to_pte(unsigned long address);
|
extern pte_t *va_to_pte(unsigned long address);
|
||||||
|
|
||||||
|
@ -93,7 +93,6 @@ extern int add_temporary_entry(unsigned long entrylo0, unsigned long entrylo1,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD (0x80000000UL/PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (0x80000000UL/PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define VMALLOC_START MAP_BASE
|
#define VMALLOC_START MAP_BASE
|
||||||
|
|
||||||
|
@ -137,7 +137,6 @@
|
|||||||
#define PTRS_PER_PTE ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
|
#define PTRS_PER_PTE ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD ((TASK_SIZE64 / PGDIR_SIZE)?(TASK_SIZE64 / PGDIR_SIZE):1)
|
#define USER_PTRS_PER_PGD ((TASK_SIZE64 / PGDIR_SIZE)?(TASK_SIZE64 / PGDIR_SIZE):1)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* TLB refill handlers also map the vmalloc area into xuseg. Avoid
|
* TLB refill handlers also map the vmalloc area into xuseg. Avoid
|
||||||
|
@ -24,8 +24,6 @@
|
|||||||
#include <asm/pgtable-bits.h>
|
#include <asm/pgtable-bits.h>
|
||||||
#include <asm-generic/pgtable-nopmd.h>
|
#include <asm-generic/pgtable-nopmd.h>
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define VMALLOC_START CONFIG_NIOS2_KERNEL_MMU_REGION_BASE
|
#define VMALLOC_START CONFIG_NIOS2_KERNEL_MMU_REGION_BASE
|
||||||
#define VMALLOC_END (CONFIG_NIOS2_KERNEL_REGION_BASE - 1)
|
#define VMALLOC_END (CONFIG_NIOS2_KERNEL_REGION_BASE - 1)
|
||||||
|
|
||||||
|
@ -73,7 +73,6 @@ extern void paging_init(void);
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Kernels own virtual memory area.
|
* Kernels own virtual memory area.
|
||||||
|
@ -171,8 +171,6 @@ static inline void purge_tlb_entries(struct mm_struct *mm, unsigned long addr)
|
|||||||
* pgd entries used up by user/kernel:
|
* pgd entries used up by user/kernel:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/* NB: The tlb miss handlers make certain assumptions about the order */
|
/* NB: The tlb miss handlers make certain assumptions about the order */
|
||||||
/* of the following bits, so be careful (One example, bits 25-31 */
|
/* of the following bits, so be careful (One example, bits 25-31 */
|
||||||
/* are moved together in one instruction). */
|
/* are moved together in one instruction). */
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
#include <asm/book3s/32/pgtable.h>
|
#include <asm/book3s/32/pgtable.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
/* Insert a PTE, top-level function is out of line. It uses an inline
|
/* Insert a PTE, top-level function is out of line. It uses an inline
|
||||||
* low level function in the respective pgtable-* files
|
* low level function in the respective pgtable-* files
|
||||||
|
@ -54,7 +54,6 @@ extern int icache_44x_need_flush;
|
|||||||
#define PGD_MASKED_BITS 0
|
#define PGD_MASKED_BITS 0
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define pte_ERROR(e) \
|
#define pte_ERROR(e) \
|
||||||
pr_err("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
|
pr_err("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#include <asm/barrier.h>
|
#include <asm/barrier.h>
|
||||||
#include <asm/asm-const.h>
|
#include <asm/asm-const.h>
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Size of EA range mapped by our pagetables.
|
* Size of EA range mapped by our pagetables.
|
||||||
*/
|
*/
|
||||||
|
@ -536,8 +536,6 @@ void setup_bootmem(void);
|
|||||||
void paging_init(void);
|
void paging_init(void);
|
||||||
void misc_mem_init(void);
|
void misc_mem_init(void);
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ZERO_PAGE is a global shared page that is always zero,
|
* ZERO_PAGE is a global shared page that is always zero,
|
||||||
* used for zero-mapped memory areas, etc.
|
* used for zero-mapped memory areas, etc.
|
||||||
|
@ -65,8 +65,6 @@ extern unsigned long zero_page_mask;
|
|||||||
|
|
||||||
/* TODO: s390 cannot support io_remap_pfn_range... */
|
/* TODO: s390 cannot support io_remap_pfn_range... */
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define pte_ERROR(e) \
|
#define pte_ERROR(e) \
|
||||||
printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e))
|
printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e))
|
||||||
#define pmd_ERROR(e) \
|
#define pmd_ERROR(e) \
|
||||||
|
@ -59,8 +59,6 @@ static inline unsigned long long neff_sign_extend(unsigned long val)
|
|||||||
/* Entries per level */
|
/* Entries per level */
|
||||||
#define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
|
#define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define PHYS_ADDR_MASK29 0x1fffffff
|
#define PHYS_ADDR_MASK29 0x1fffffff
|
||||||
#define PHYS_ADDR_MASK32 0xffffffff
|
#define PHYS_ADDR_MASK32 0xffffffff
|
||||||
|
|
||||||
|
@ -48,7 +48,6 @@ unsigned long __init bootmem_init(unsigned long *pages_avail);
|
|||||||
#define PTRS_PER_PMD 64
|
#define PTRS_PER_PMD 64
|
||||||
#define PTRS_PER_PGD 256
|
#define PTRS_PER_PGD 256
|
||||||
#define USER_PTRS_PER_PGD PAGE_OFFSET / PGDIR_SIZE
|
#define USER_PTRS_PER_PGD PAGE_OFFSET / PGDIR_SIZE
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
#define PTE_SIZE (PTRS_PER_PTE*4)
|
#define PTE_SIZE (PTRS_PER_PTE*4)
|
||||||
|
|
||||||
#define PAGE_NONE SRMMU_PAGE_NONE
|
#define PAGE_NONE SRMMU_PAGE_NONE
|
||||||
|
@ -95,9 +95,6 @@ bool kern_addr_valid(unsigned long addr);
|
|||||||
#define PTRS_PER_PUD (1UL << PUD_BITS)
|
#define PTRS_PER_PUD (1UL << PUD_BITS)
|
||||||
#define PTRS_PER_PGD (1UL << PGDIR_BITS)
|
#define PTRS_PER_PGD (1UL << PGDIR_BITS)
|
||||||
|
|
||||||
/* Kernel has a separate 44bit address space. */
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define pmd_ERROR(e) \
|
#define pmd_ERROR(e) \
|
||||||
pr_err("%s:%d: bad pmd %p(%016lx) seen at (%pS)\n", \
|
pr_err("%s:%d: bad pmd %p(%016lx) seen at (%pS)\n", \
|
||||||
__FILE__, __LINE__, &(e), pmd_val(e), __builtin_return_address(0))
|
__FILE__, __LINE__, &(e), pmd_val(e), __builtin_return_address(0))
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
#define PTRS_PER_PTE 1024
|
#define PTRS_PER_PTE 1024
|
||||||
#define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
|
||||||
#define PTRS_PER_PGD 1024
|
#define PTRS_PER_PGD 1024
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define pte_ERROR(e) \
|
#define pte_ERROR(e) \
|
||||||
printk("%s:%d: bad pte %p(%08lx).\n", __FILE__, __LINE__, &(e), \
|
printk("%s:%d: bad pte %p(%08lx).\n", __FILE__, __LINE__, &(e), \
|
||||||
|
@ -41,7 +41,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define pte_ERROR(e) \
|
#define pte_ERROR(e) \
|
||||||
printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), \
|
printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), \
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
#include <asm/page_types.h>
|
#include <asm/page_types.h>
|
||||||
|
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
|
|
||||||
#define _PAGE_BIT_PRESENT 0 /* is present */
|
#define _PAGE_BIT_PRESENT 0 /* is present */
|
||||||
#define _PAGE_BIT_RW 1 /* writeable */
|
#define _PAGE_BIT_RW 1 /* writeable */
|
||||||
#define _PAGE_BIT_USER 2 /* userspace addressable */
|
#define _PAGE_BIT_USER 2 /* userspace addressable */
|
||||||
|
@ -59,7 +59,6 @@
|
|||||||
#define PTRS_PER_PGD 1024
|
#define PTRS_PER_PGD 1024
|
||||||
#define PGD_ORDER 0
|
#define PGD_ORDER 0
|
||||||
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
|
||||||
#define FIRST_USER_ADDRESS 0UL
|
|
||||||
#define FIRST_USER_PGD_NR (FIRST_USER_ADDRESS >> PGDIR_SHIFT)
|
#define FIRST_USER_PGD_NR (FIRST_USER_ADDRESS >> PGDIR_SHIFT)
|
||||||
|
|
||||||
#ifdef CONFIG_MMU
|
#ifdef CONFIG_MMU
|
||||||
|
@ -28,6 +28,15 @@
|
|||||||
#define USER_PGTABLES_CEILING 0UL
|
#define USER_PGTABLES_CEILING 0UL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This defines the first usable user address. Platforms
|
||||||
|
* can override its value with custom FIRST_USER_ADDRESS
|
||||||
|
* defined in their respective <asm/pgtable.h>.
|
||||||
|
*/
|
||||||
|
#ifndef FIRST_USER_ADDRESS
|
||||||
|
#define FIRST_USER_ADDRESS 0UL
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A page table page can be thought of an array like this: pXd_t[PTRS_PER_PxD]
|
* A page table page can be thought of an array like this: pXd_t[PTRS_PER_PxD]
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user