printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / pkeys.h
blob86be8bf27b41b773f3957c7b5ff63f6592e8ab18
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_PKEYS_H
3 #define _LINUX_PKEYS_H
5 #include <linux/mm.h>
7 #define ARCH_DEFAULT_PKEY 0
9 #ifdef CONFIG_ARCH_HAS_PKEYS
10 #include <asm/pkeys.h>
11 #else /* ! CONFIG_ARCH_HAS_PKEYS */
12 #define arch_max_pkey() (1)
13 #define execute_only_pkey(mm) (0)
14 #define arch_override_mprotect_pkey(vma, prot, pkey) (0)
15 #define PKEY_DEDICATED_EXECUTE_ONLY 0
16 #define ARCH_VM_PKEY_FLAGS 0
18 static inline int vma_pkey(struct vm_area_struct *vma)
20 return 0;
23 static inline bool mm_pkey_is_allocated(struct mm_struct *mm, int pkey)
25 return (pkey == 0);
28 static inline int mm_pkey_alloc(struct mm_struct *mm)
30 return -1;
33 static inline int mm_pkey_free(struct mm_struct *mm, int pkey)
35 return -EINVAL;
38 static inline int arch_set_user_pkey_access(struct task_struct *tsk, int pkey,
39 unsigned long init_val)
41 return 0;
44 static inline bool arch_pkeys_enabled(void)
46 return false;
49 #endif /* ! CONFIG_ARCH_HAS_PKEYS */
51 #endif /* _LINUX_PKEYS_H */