blob: dab8892e6ff124817f7312b23e8055d3a50b2ce8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MMAN_H
2#define _LINUX_MMAN_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/mman.h>
5
6#define MREMAP_MAYMOVE 1
7#define MREMAP_FIXED 2
8
9#define OVERCOMMIT_GUESS 0
10#define OVERCOMMIT_ALWAYS 1
11#define OVERCOMMIT_NEVER 2
David Woodhouse9cdcb562006-04-25 14:18:07 +010012
13#ifdef __KERNEL__
David Woodhouse9cdcb562006-04-25 14:18:07 +010014#include <linux/mm.h>
15
16#include <asm/atomic.h>
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern int sysctl_overcommit_memory;
19extern int sysctl_overcommit_ratio;
Alan Cox80119ef2008-05-23 13:04:31 -070020extern atomic_long_t vm_committed_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#ifdef CONFIG_SMP
23extern void vm_acct_memory(long pages);
24#else
25static inline void vm_acct_memory(long pages)
26{
Alan Cox80119ef2008-05-23 13:04:31 -070027 atomic_long_add(pages, &vm_committed_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028}
29#endif
30
31static inline void vm_unacct_memory(long pages)
32{
33 vm_acct_memory(-pages);
34}
35
36/*
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)
41 */
42#define _calc_vm_trans(x, bit1, bit2) \
43 ((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \
44 : ((x) & (bit1)) / ((bit1) / (bit2)))
45
46/*
47 * Combine the mmap "prot" argument into "vm_flags" used internally.
48 */
49static inline unsigned long
50calc_vm_prot_bits(unsigned long prot)
51{
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 );
55}
56
57/*
58 * Combine the mmap "flags" argument into "vm_flags" used internally.
59 */
60static inline unsigned long
61calc_vm_flag_bits(unsigned long flags)
62{
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 );
67}
David Woodhouse9cdcb562006-04-25 14:18:07 +010068#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif /* _LINUX_MMAN_H */