MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / mman.h
blob87920a0852a37e8945cdfd63bad2f6aa5f58110a
1 #ifndef _LINUX_MMAN_H
2 #define _LINUX_MMAN_H
4 #include <asm/mman.h>
6 #define MREMAP_MAYMOVE 1
7 #define MREMAP_FIXED 2
9 #define OVERCOMMIT_GUESS 0
10 #define OVERCOMMIT_ALWAYS 1
11 #define OVERCOMMIT_NEVER 2
13 #ifdef __KERNEL__
14 #include <linux/mm.h>
16 #include <asm/atomic.h>
18 extern int sysctl_overcommit_memory;
19 extern int sysctl_overcommit_ratio;
20 extern atomic_t vm_committed_space;
22 #ifdef CONFIG_SMP
23 extern void vm_acct_memory(long pages);
24 #else
25 static inline void vm_acct_memory(long pages)
27 atomic_add(pages, &vm_committed_space);
29 #endif
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 */