1 /* SPDX-License-Identifier: GPL-2.0 */
6 #include <linux/percpu_counter.h>
8 #include <linux/atomic.h>
9 #include <uapi/linux/mman.h>
12 * Arrange for legacy / undefined architecture specific flags to be
13 * ignored by mmap handling code.
19 #define MAP_HUGE_2MB 0
22 #define MAP_HUGE_1GB 0
24 #ifndef MAP_UNINITIALIZED
25 #define MAP_UNINITIALIZED 0
32 * The historical set of flags that all mmap implementations implicitly
33 * support when a ->mmap_validate() op is not provided in file_operations.
35 #define LEGACY_MAP_MASK (MAP_SHARED \
53 extern int sysctl_overcommit_memory
;
54 extern int sysctl_overcommit_ratio
;
55 extern unsigned long sysctl_overcommit_kbytes
;
56 extern struct percpu_counter vm_committed_as
;
59 extern s32 vm_committed_as_batch
;
61 #define vm_committed_as_batch 0
64 unsigned long vm_memory_committed(void);
66 static inline void vm_acct_memory(long pages
)
68 percpu_counter_add_batch(&vm_committed_as
, pages
, vm_committed_as_batch
);
71 static inline void vm_unacct_memory(long pages
)
73 vm_acct_memory(-pages
);
77 * Allow architectures to handle additional protection bits
80 #ifndef arch_calc_vm_prot_bits
81 #define arch_calc_vm_prot_bits(prot, pkey) 0
84 #ifndef arch_vm_get_page_prot
85 #define arch_vm_get_page_prot(vm_flags) __pgprot(0)
88 #ifndef arch_validate_prot
90 * This is called from mprotect(). PROT_GROWSDOWN and PROT_GROWSUP have
91 * already been masked out.
93 * Returns true if the prot flags are valid
95 static inline bool arch_validate_prot(unsigned long prot
)
97 return (prot
& ~(PROT_READ
| PROT_WRITE
| PROT_EXEC
| PROT_SEM
)) == 0;
99 #define arch_validate_prot arch_validate_prot
103 * Optimisation macro. It is equivalent to:
104 * (x & bit1) ? bit2 : 0
105 * but this version is faster.
106 * ("bit1" and "bit2" must be single bits)
108 #define _calc_vm_trans(x, bit1, bit2) \
109 ((!(bit1) || !(bit2)) ? 0 : \
110 ((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \
111 : ((x) & (bit1)) / ((bit1) / (bit2))))
114 * Combine the mmap "prot" argument into "vm_flags" used internally.
116 static inline unsigned long
117 calc_vm_prot_bits(unsigned long prot
, unsigned long pkey
)
119 return _calc_vm_trans(prot
, PROT_READ
, VM_READ
) |
120 _calc_vm_trans(prot
, PROT_WRITE
, VM_WRITE
) |
121 _calc_vm_trans(prot
, PROT_EXEC
, VM_EXEC
) |
122 arch_calc_vm_prot_bits(prot
, pkey
);
126 * Combine the mmap "flags" argument into "vm_flags" used internally.
128 static inline unsigned long
129 calc_vm_flag_bits(unsigned long flags
)
131 return _calc_vm_trans(flags
, MAP_GROWSDOWN
, VM_GROWSDOWN
) |
132 _calc_vm_trans(flags
, MAP_DENYWRITE
, VM_DENYWRITE
) |
133 _calc_vm_trans(flags
, MAP_LOCKED
, VM_LOCKED
) |
134 _calc_vm_trans(flags
, MAP_SYNC
, VM_SYNC
);
137 unsigned long vm_commit_limit(void);
138 #endif /* _LINUX_MMAN_H */