mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
mm/mmap: build protect protection_map[] with ARCH_HAS_VM_GET_PAGE_PROT
Now that protection_map[] has been moved inside those platforms that enable ARCH_HAS_VM_GET_PAGE_PROT. Hence generic protection_map[] array now can be protected with CONFIG_ARCH_HAS_VM_GET_PAGE_PROT intead of __P000. Link: https://lkml.kernel.org/r/20220711070600.2378316-8-anshuman.khandual@arm.com Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Brian Cain <bcain@quicinc.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Christoph Hellwig <hch@lst.de> Cc: Chris Zankel <chris@zankel.net> Cc: "David S. Miller" <davem@davemloft.net> Cc: Dinh Nguyen <dinguyen@kernel.org> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Guo Ren <guoren@kernel.org> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Huacai Chen <chenhuacai@kernel.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> Cc: Jeff Dike <jdike@addtoit.com> Cc: Jonas Bonn <jonas@southpole.se> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Michal Simek <monstr@monstr.eu> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Richard Henderson <rth@twiddle.net> Cc: Rich Felker <dalias@libc.org> Cc: Russell King <linux@armlinux.org.uk> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Stafford Horne <shorne@gmail.com> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Vineet Gupta <vgupta@kernel.org> Cc: WANG Xuerui <kernel@xen0n.name> Cc: Will Deacon <will@kernel.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
4867fbbdd6
commit
09095f7413
2 changed files with 2 additions and 5 deletions
|
@ -425,7 +425,7 @@ extern unsigned int kobjsize(const void *objp);
|
||||||
* mapping from the currently active vm_flags protection bits (the
|
* mapping from the currently active vm_flags protection bits (the
|
||||||
* low four bits) to a page protection mask..
|
* low four bits) to a page protection mask..
|
||||||
*/
|
*/
|
||||||
#ifdef __P000
|
#ifndef CONFIG_ARCH_HAS_VM_GET_PAGE_PROT
|
||||||
extern pgprot_t protection_map[16];
|
extern pgprot_t protection_map[16];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ static void unmap_region(struct mm_struct *mm,
|
||||||
struct vm_area_struct *vma, struct vm_area_struct *prev,
|
struct vm_area_struct *vma, struct vm_area_struct *prev,
|
||||||
unsigned long start, unsigned long end);
|
unsigned long start, unsigned long end);
|
||||||
|
|
||||||
#ifdef __P000
|
#ifndef CONFIG_ARCH_HAS_VM_GET_PAGE_PROT
|
||||||
pgprot_t protection_map[16] __ro_after_init = {
|
pgprot_t protection_map[16] __ro_after_init = {
|
||||||
[VM_NONE] = __P000,
|
[VM_NONE] = __P000,
|
||||||
[VM_READ] = __P001,
|
[VM_READ] = __P001,
|
||||||
|
@ -100,9 +100,6 @@ pgprot_t protection_map[16] __ro_after_init = {
|
||||||
[VM_SHARED | VM_EXEC | VM_WRITE] = __S110,
|
[VM_SHARED | VM_EXEC | VM_WRITE] = __S110,
|
||||||
[VM_SHARED | VM_EXEC | VM_WRITE | VM_READ] = __S111
|
[VM_SHARED | VM_EXEC | VM_WRITE | VM_READ] = __S111
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef CONFIG_ARCH_HAS_VM_GET_PAGE_PROT
|
|
||||||
DECLARE_VM_GET_PAGE_PROT
|
DECLARE_VM_GET_PAGE_PROT
|
||||||
#endif /* CONFIG_ARCH_HAS_VM_GET_PAGE_PROT */
|
#endif /* CONFIG_ARCH_HAS_VM_GET_PAGE_PROT */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue