mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-06 13:55:08 +08:00
e10cd4b009
This defines and exports a platform specific custom vm_get_page_prot() via subscribing ARCH_HAS_VM_GET_PAGE_PROT. This also unsubscribes from config ARCH_HAS_FILTER_PGPROT, after dropping off arch_filter_pgprot() and arch_vm_get_page_prot(). Link: https://lkml.kernel.org/r/20220414062125.609297-6-anshuman.khandual@arm.com Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: David S. Miller <davem@davemloft.net> Cc: Khalid Aziz <khalid.aziz@oracle.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Paul Mackerras <paulus@samba.org> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
18 lines
503 B
C
18 lines
503 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _ASM_X86_MMAN_H
|
|
#define _ASM_X86_MMAN_H
|
|
|
|
#define MAP_32BIT 0x40 /* only give out 32bit addresses */
|
|
|
|
#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
|
|
#define arch_calc_vm_prot_bits(prot, key) ( \
|
|
((key) & 0x1 ? VM_PKEY_BIT0 : 0) | \
|
|
((key) & 0x2 ? VM_PKEY_BIT1 : 0) | \
|
|
((key) & 0x4 ? VM_PKEY_BIT2 : 0) | \
|
|
((key) & 0x8 ? VM_PKEY_BIT3 : 0))
|
|
#endif
|
|
|
|
#include <asm-generic/mman.h>
|
|
|
|
#endif /* _ASM_X86_MMAN_H */
|