Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_MMAN_H |
| 2 | #define _LINUX_MMAN_H |
| 3 | |
David Woodhouse | 9cdcb56 | 2006-04-25 14:18:07 +0100 | [diff] [blame] | 4 | #include <linux/mm.h> |
KOSAKI Motohiro | 00a62ce | 2009-04-30 15:08:51 -0700 | [diff] [blame] | 5 | #include <linux/percpu_counter.h> |
David Woodhouse | 9cdcb56 | 2006-04-25 14:18:07 +0100 | [diff] [blame] | 6 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 7 | #include <linux/atomic.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 8 | #include <uapi/linux/mman.h> |
David Woodhouse | 9cdcb56 | 2006-04-25 14:18:07 +0100 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | extern int sysctl_overcommit_memory; |
| 11 | extern int sysctl_overcommit_ratio; |
Jerome Marchand | 49f0ce5 | 2014-01-21 15:49:14 -0800 | [diff] [blame] | 12 | extern unsigned long sysctl_overcommit_kbytes; |
KOSAKI Motohiro | 00a62ce | 2009-04-30 15:08:51 -0700 | [diff] [blame] | 13 | extern struct percpu_counter vm_committed_as; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Tim Chen | 917d929 | 2013-07-03 15:02:44 -0700 | [diff] [blame] | 15 | #ifdef CONFIG_SMP |
| 16 | extern s32 vm_committed_as_batch; |
| 17 | #else |
| 18 | #define vm_committed_as_batch 0 |
| 19 | #endif |
| 20 | |
K. Y. Srinivasan | 997071b | 2012-11-15 14:34:42 -0800 | [diff] [blame] | 21 | unsigned long vm_memory_committed(void); |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | static inline void vm_acct_memory(long pages) |
| 24 | { |
Tim Chen | 917d929 | 2013-07-03 15:02:44 -0700 | [diff] [blame] | 25 | __percpu_counter_add(&vm_committed_as, pages, vm_committed_as_batch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | static inline void vm_unacct_memory(long pages) |
| 29 | { |
| 30 | vm_acct_memory(-pages); |
| 31 | } |
| 32 | |
| 33 | /* |
Dave Kleikamp | b845f31 | 2008-07-08 00:28:51 +1000 | [diff] [blame] | 34 | * Allow architectures to handle additional protection bits |
| 35 | */ |
| 36 | |
| 37 | #ifndef arch_calc_vm_prot_bits |
| 38 | #define arch_calc_vm_prot_bits(prot) 0 |
| 39 | #endif |
| 40 | |
| 41 | #ifndef arch_vm_get_page_prot |
| 42 | #define arch_vm_get_page_prot(vm_flags) __pgprot(0) |
| 43 | #endif |
| 44 | |
| 45 | #ifndef arch_validate_prot |
| 46 | /* |
| 47 | * This is called from mprotect(). PROT_GROWSDOWN and PROT_GROWSUP have |
| 48 | * already been masked out. |
| 49 | * |
| 50 | * Returns true if the prot flags are valid |
| 51 | */ |
| 52 | static inline int arch_validate_prot(unsigned long prot) |
| 53 | { |
| 54 | return (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM)) == 0; |
| 55 | } |
| 56 | #define arch_validate_prot arch_validate_prot |
| 57 | #endif |
| 58 | |
| 59 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | * Optimisation macro. It is equivalent to: |
| 61 | * (x & bit1) ? bit2 : 0 |
| 62 | * but this version is faster. |
| 63 | * ("bit1" and "bit2" must be single bits) |
| 64 | */ |
| 65 | #define _calc_vm_trans(x, bit1, bit2) \ |
| 66 | ((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \ |
| 67 | : ((x) & (bit1)) / ((bit1) / (bit2))) |
| 68 | |
| 69 | /* |
| 70 | * Combine the mmap "prot" argument into "vm_flags" used internally. |
| 71 | */ |
| 72 | static inline unsigned long |
| 73 | calc_vm_prot_bits(unsigned long prot) |
| 74 | { |
| 75 | return _calc_vm_trans(prot, PROT_READ, VM_READ ) | |
| 76 | _calc_vm_trans(prot, PROT_WRITE, VM_WRITE) | |
Dave Kleikamp | b845f31 | 2008-07-08 00:28:51 +1000 | [diff] [blame] | 77 | _calc_vm_trans(prot, PROT_EXEC, VM_EXEC) | |
| 78 | arch_calc_vm_prot_bits(prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | /* |
| 82 | * Combine the mmap "flags" argument into "vm_flags" used internally. |
| 83 | */ |
| 84 | static inline unsigned long |
| 85 | calc_vm_flag_bits(unsigned long flags) |
| 86 | { |
| 87 | return _calc_vm_trans(flags, MAP_GROWSDOWN, VM_GROWSDOWN ) | |
| 88 | _calc_vm_trans(flags, MAP_DENYWRITE, VM_DENYWRITE ) | |
Michel Lespinasse | 09a9f1d | 2013-03-28 16:26:23 -0700 | [diff] [blame] | 89 | _calc_vm_trans(flags, MAP_LOCKED, VM_LOCKED ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
Jerome Marchand | 00619bc | 2013-11-12 15:08:31 -0800 | [diff] [blame] | 91 | |
| 92 | unsigned long vm_commit_limit(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #endif /* _LINUX_MMAN_H */ |