ASoC: wm_adsp: Separate concept of booted and running
[linux-2.6/btrfs-unstable.git] / include / linux / mman.h
blob634c4c51fe3adaee4b65d9a977e954f42ecf6131
1 #ifndef _LINUX_MMAN_H
2 #define _LINUX_MMAN_H
4 #include <linux/mm.h>
5 #include <linux/percpu_counter.h>
7 #include <linux/atomic.h>
8 #include <uapi/linux/mman.h>
10 extern int sysctl_overcommit_memory;
11 extern int sysctl_overcommit_ratio;
12 extern unsigned long sysctl_overcommit_kbytes;
13 extern struct percpu_counter vm_committed_as;
15 #ifdef CONFIG_SMP
16 extern s32 vm_committed_as_batch;
17 #else
18 #define vm_committed_as_batch 0
19 #endif
21 unsigned long vm_memory_committed(void);
23 static inline void vm_acct_memory(long pages)
25 __percpu_counter_add(&vm_committed_as, pages, vm_committed_as_batch);
28 static inline void vm_unacct_memory(long pages)
30 vm_acct_memory(-pages);
34 * Allow architectures to handle additional protection bits
37 #ifndef arch_calc_vm_prot_bits
38 #define arch_calc_vm_prot_bits(prot, pkey) 0
39 #endif
41 #ifndef arch_vm_get_page_prot
42 #define arch_vm_get_page_prot(vm_flags) __pgprot(0)
43 #endif
45 #ifndef arch_validate_prot
47 * This is called from mprotect(). PROT_GROWSDOWN and PROT_GROWSUP have
48 * already been masked out.
50 * Returns true if the prot flags are valid
52 static inline bool arch_validate_prot(unsigned long prot)
54 return (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM)) == 0;
56 #define arch_validate_prot arch_validate_prot
57 #endif
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)
65 #define _calc_vm_trans(x, bit1, bit2) \
66 ((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \
67 : ((x) & (bit1)) / ((bit1) / (bit2)))
70 * Combine the mmap "prot" argument into "vm_flags" used internally.
72 static inline unsigned long
73 calc_vm_prot_bits(unsigned long prot, unsigned long pkey)
75 return _calc_vm_trans(prot, PROT_READ, VM_READ ) |
76 _calc_vm_trans(prot, PROT_WRITE, VM_WRITE) |
77 _calc_vm_trans(prot, PROT_EXEC, VM_EXEC) |
78 arch_calc_vm_prot_bits(prot, pkey);
82 * Combine the mmap "flags" argument into "vm_flags" used internally.
84 static inline unsigned long
85 calc_vm_flag_bits(unsigned long flags)
87 return _calc_vm_trans(flags, MAP_GROWSDOWN, VM_GROWSDOWN ) |
88 _calc_vm_trans(flags, MAP_DENYWRITE, VM_DENYWRITE ) |
89 _calc_vm_trans(flags, MAP_LOCKED, VM_LOCKED );
92 unsigned long vm_commit_limit(void);
93 #endif /* _LINUX_MMAN_H */