6 #define MREMAP_MAYMOVE 1
9 #define OVERCOMMIT_GUESS 0
10 #define OVERCOMMIT_ALWAYS 1
11 #define OVERCOMMIT_NEVER 2
16 #include <asm/atomic.h>
18 extern int sysctl_overcommit_memory
;
19 extern int sysctl_overcommit_ratio
;
20 extern atomic_t vm_committed_space
;
23 extern void vm_acct_memory(long pages
);
25 static inline void vm_acct_memory(long pages
)
27 atomic_add(pages
, &vm_committed_space
);
31 static inline void vm_unacct_memory(long pages
)
33 vm_acct_memory(-pages
);
37 * Optimisation macro. It is equivalent to:
38 * (x & bit1) ? bit2 : 0
39 * but this version is faster.
40 * ("bit1" and "bit2" must be single bits)
42 #define _calc_vm_trans(x, bit1, bit2) \
43 ((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \
44 : ((x) & (bit1)) / ((bit1) / (bit2)))
47 * Combine the mmap "prot" argument into "vm_flags" used internally.
49 static inline unsigned long
50 calc_vm_prot_bits(unsigned long prot
)
52 return _calc_vm_trans(prot
, PROT_READ
, VM_READ
) |
53 _calc_vm_trans(prot
, PROT_WRITE
, VM_WRITE
) |
54 _calc_vm_trans(prot
, PROT_EXEC
, VM_EXEC
);
58 * Combine the mmap "flags" argument into "vm_flags" used internally.
60 static inline unsigned long
61 calc_vm_flag_bits(unsigned long flags
)
63 return _calc_vm_trans(flags
, MAP_GROWSDOWN
, VM_GROWSDOWN
) |
64 _calc_vm_trans(flags
, MAP_DENYWRITE
, VM_DENYWRITE
) |
65 _calc_vm_trans(flags
, MAP_EXECUTABLE
, VM_EXECUTABLE
) |
66 _calc_vm_trans(flags
, MAP_LOCKED
, VM_LOCKED
);
68 #endif /* __KERNEL__ */
69 #endif /* _LINUX_MMAN_H */