NOMMU: Make VMAs per MM as for MMU-mode linux
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / mm_types.h
CommitLineData
5b99cd0e
HC
1#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
4f9a58d7 4#include <linux/auxvec.h>
5b99cd0e
HC
5#include <linux/types.h>
6#include <linux/threads.h>
7#include <linux/list.h>
8#include <linux/spinlock.h>
c92ff1bd
MS
9#include <linux/prio_tree.h>
10#include <linux/rbtree.h>
11#include <linux/rwsem.h>
12#include <linux/completion.h>
cddb8a5c 13#include <linux/cpumask.h>
c92ff1bd
MS
14#include <asm/page.h>
15#include <asm/mmu.h>
5b99cd0e 16
4f9a58d7
OH
17#ifndef AT_VECTOR_SIZE_ARCH
18#define AT_VECTOR_SIZE_ARCH 0
19#endif
20#define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
21
5b99cd0e
HC
22struct address_space;
23
f7d0b926
JF
24#define USE_SPLIT_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
25
26#if USE_SPLIT_PTLOCKS
c92ff1bd 27typedef atomic_long_t mm_counter_t;
f7d0b926 28#else /* !USE_SPLIT_PTLOCKS */
c92ff1bd 29typedef unsigned long mm_counter_t;
f7d0b926 30#endif /* !USE_SPLIT_PTLOCKS */
c92ff1bd 31
5b99cd0e
HC
32/*
33 * Each physical page in the system has a struct page associated with
34 * it to keep track of whatever it is we are using the page for at the
35 * moment. Note that we have no way to track which tasks are using
36 * a page, though if it is a pagecache page, rmap structures can tell us
37 * who is mapping it.
38 */
39struct page {
40 unsigned long flags; /* Atomic flags, some possibly
41 * updated asynchronously */
42 atomic_t _count; /* Usage count, see below. */
81819f0f
CL
43 union {
44 atomic_t _mapcount; /* Count of ptes mapped in mms,
5b99cd0e
HC
45 * to show when page is mapped
46 * & limit reverse map searches.
47 */
39b26464
CL
48 struct { /* SLUB */
49 u16 inuse;
50 u16 objects;
51 };
81819f0f 52 };
5b99cd0e
HC
53 union {
54 struct {
55 unsigned long private; /* Mapping-private opaque data:
56 * usually used for buffer_heads
57 * if PagePrivate set; used for
58 * swp_entry_t if PageSwapCache;
59 * indicates order in the buddy
60 * system if PG_buddy is set.
61 */
62 struct address_space *mapping; /* If low bit clear, points to
63 * inode address_space, or NULL.
64 * If page mapped as anonymous
65 * memory, low bit is set, and
66 * it points to anon_vma object:
67 * see PAGE_MAPPING_ANON below.
68 */
69 };
f7d0b926 70#if USE_SPLIT_PTLOCKS
5b99cd0e
HC
71 spinlock_t ptl;
72#endif
a973e9dd 73 struct kmem_cache *slab; /* SLUB: Pointer to slab */
8e65d24c 74 struct page *first_page; /* Compound tail pages */
81819f0f
CL
75 };
76 union {
77 pgoff_t index; /* Our offset within mapping. */
894b8788 78 void *freelist; /* SLUB: freelist req. slab lock */
5b99cd0e 79 };
5b99cd0e
HC
80 struct list_head lru; /* Pageout list, eg. active_list
81 * protected by zone->lru_lock !
82 */
83 /*
84 * On machines where all RAM is mapped into kernel address space,
85 * we can simply calculate the virtual address. On machines with
86 * highmem some memory is mapped into kernel virtual memory
87 * dynamically, so we need a place to store that address.
88 * Note that this field could be 16 bits on x86 ... ;)
89 *
90 * Architectures with slow multiplication can define
91 * WANT_PAGE_VIRTUAL in asm/page.h
92 */
93#if defined(WANT_PAGE_VIRTUAL)
94 void *virtual; /* Kernel virtual address (NULL if
95 not kmapped, ie. highmem) */
96#endif /* WANT_PAGE_VIRTUAL */
97};
98
8feae131
DH
99/*
100 * A region containing a mapping of a non-memory backed file under NOMMU
101 * conditions. These are held in a global tree and are pinned by the VMAs that
102 * map parts of them.
103 */
104struct vm_region {
105 struct rb_node vm_rb; /* link in global region tree */
106 unsigned long vm_flags; /* VMA vm_flags */
107 unsigned long vm_start; /* start address of region */
108 unsigned long vm_end; /* region initialised to here */
109 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
110 struct file *vm_file; /* the backing file or NULL */
111
112 atomic_t vm_usage; /* region usage count */
113};
114
c92ff1bd
MS
115/*
116 * This struct defines a memory VMM memory area. There is one of these
117 * per VM-area/task. A VM area is any part of the process virtual memory
118 * space that has a special rule for the page-fault handlers (ie a shared
119 * library, the executable area etc).
120 */
121struct vm_area_struct {
122 struct mm_struct * vm_mm; /* The address space we belong to. */
123 unsigned long vm_start; /* Our start address within vm_mm. */
124 unsigned long vm_end; /* The first byte after our end address
125 within vm_mm. */
126
127 /* linked list of VM areas per task, sorted by address */
128 struct vm_area_struct *vm_next;
129
130 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
605d9288 131 unsigned long vm_flags; /* Flags, see mm.h. */
c92ff1bd
MS
132
133 struct rb_node vm_rb;
134
135 /*
136 * For areas with an address space and backing store,
137 * linkage into the address_space->i_mmap prio tree, or
138 * linkage to the list of like vmas hanging off its node, or
139 * linkage of vma in the address_space->i_mmap_nonlinear list.
140 */
141 union {
142 struct {
143 struct list_head list;
144 void *parent; /* aligns with prio_tree_node parent */
145 struct vm_area_struct *head;
146 } vm_set;
147
148 struct raw_prio_tree_node prio_tree_node;
149 } shared;
150
151 /*
152 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
153 * list, after a COW of one of the file pages. A MAP_SHARED vma
154 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
155 * or brk vma (with NULL file) can only be in an anon_vma list.
156 */
157 struct list_head anon_vma_node; /* Serialized by anon_vma->lock */
158 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
159
160 /* Function pointers to deal with this struct. */
161 struct vm_operations_struct * vm_ops;
162
163 /* Information about our backing store: */
164 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
165 units, *not* PAGE_CACHE_SIZE */
166 struct file * vm_file; /* File we map to (can be NULL). */
167 void * vm_private_data; /* was vm_pte (shared mem) */
168 unsigned long vm_truncate_count;/* truncate_count or restart_addr */
169
170#ifndef CONFIG_MMU
8feae131 171 struct vm_region *vm_region; /* NOMMU mapping region */
c92ff1bd
MS
172#endif
173#ifdef CONFIG_NUMA
174 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
175#endif
176};
177
b564daf8
ON
178struct core_thread {
179 struct task_struct *task;
180 struct core_thread *next;
181};
182
32ecb1f2 183struct core_state {
c5f1cc8c 184 atomic_t nr_threads;
b564daf8 185 struct core_thread dumper;
32ecb1f2
ON
186 struct completion startup;
187};
188
c92ff1bd
MS
189struct mm_struct {
190 struct vm_area_struct * mmap; /* list of VMAs */
191 struct rb_root mm_rb;
192 struct vm_area_struct * mmap_cache; /* last find_vma result */
193 unsigned long (*get_unmapped_area) (struct file *filp,
194 unsigned long addr, unsigned long len,
195 unsigned long pgoff, unsigned long flags);
196 void (*unmap_area) (struct mm_struct *mm, unsigned long addr);
197 unsigned long mmap_base; /* base of mmap area */
198 unsigned long task_size; /* size of task vm space */
199 unsigned long cached_hole_size; /* if non-zero, the largest hole below free_area_cache */
200 unsigned long free_area_cache; /* first hole of size cached_hole_size or larger */
201 pgd_t * pgd;
202 atomic_t mm_users; /* How many users with user space? */
203 atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
204 int map_count; /* number of VMAs */
205 struct rw_semaphore mmap_sem;
206 spinlock_t page_table_lock; /* Protects page tables and some counters */
207
208 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
209 * together off init_mm.mmlist, and are protected
210 * by mmlist_lock
211 */
212
213 /* Special counters, in some configurations protected by the
214 * page_table_lock, in other configurations by being atomic.
215 */
216 mm_counter_t _file_rss;
217 mm_counter_t _anon_rss;
218
219 unsigned long hiwater_rss; /* High-watermark of RSS usage */
220 unsigned long hiwater_vm; /* High-water virtual memory usage */
221
222 unsigned long total_vm, locked_vm, shared_vm, exec_vm;
223 unsigned long stack_vm, reserved_vm, def_flags, nr_ptes;
224 unsigned long start_code, end_code, start_data, end_data;
225 unsigned long start_brk, brk, start_stack;
226 unsigned long arg_start, arg_end, env_start, env_end;
227
228 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
229
230 cpumask_t cpu_vm_mask;
231
232 /* Architecture-specific MM context */
233 mm_context_t context;
234
235 /* Swap token stuff */
236 /*
237 * Last value of global fault stamp as seen by this process.
238 * In other words, this value gives an indication of how long
239 * it has been since this task got the token.
240 * Look at mm/thrash.c
241 */
242 unsigned int faultstamp;
243 unsigned int token_priority;
244 unsigned int last_interval;
245
246 unsigned long flags; /* Must use atomic bitops to access the bits */
247
a94e2d40 248 struct core_state *core_state; /* coredumping support */
c92ff1bd
MS
249
250 /* aio bits */
abf137dd
JA
251 spinlock_t ioctx_lock;
252 struct hlist_head ioctx_list;
253
cf475ad2 254#ifdef CONFIG_MM_OWNER
4cd1a8fc
KM
255 /*
256 * "owner" points to a task that is regarded as the canonical
257 * user/owner of this mm. All of the following must be true in
258 * order for it to be changed:
259 *
260 * current == mm->owner
261 * current->mm != mm
262 * new_owner->mm == mm
263 * new_owner->alloc_lock is held
264 */
265 struct task_struct *owner;
78fb7466 266#endif
925d1c40
MH
267
268#ifdef CONFIG_PROC_FS
269 /* store ref to file /proc/<pid>/exe symlink points to */
270 struct file *exe_file;
271 unsigned long num_exe_file_vmas;
272#endif
cddb8a5c
AA
273#ifdef CONFIG_MMU_NOTIFIER
274 struct mmu_notifier_mm *mmu_notifier_mm;
275#endif
c92ff1bd
MS
276};
277
5b99cd0e 278#endif /* _LINUX_MM_TYPES_H */