]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/mm_types.h
UBUNTU: SAUCE: LSM stacking: procfs: add smack subdir to attrs
[mirror_ubuntu-artful-kernel.git] / include / linux / mm_types.h
CommitLineData
5b99cd0e
HC
1#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
2e58f173
IM
4#include <linux/mm_types_task.h>
5
4f9a58d7 6#include <linux/auxvec.h>
5b99cd0e
HC
7#include <linux/list.h>
8#include <linux/spinlock.h>
c92ff1bd
MS
9#include <linux/rbtree.h>
10#include <linux/rwsem.h>
11#include <linux/completion.h>
cddb8a5c 12#include <linux/cpumask.h>
d4b3b638 13#include <linux/uprobes.h>
bbeae5b0 14#include <linux/page-flags-layout.h>
ec8d7c14 15#include <linux/workqueue.h>
2e58f173 16
c92ff1bd 17#include <asm/mmu.h>
5b99cd0e 18
4f9a58d7
OH
19#ifndef AT_VECTOR_SIZE_ARCH
20#define AT_VECTOR_SIZE_ARCH 0
21#endif
22#define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
23
5b99cd0e 24struct address_space;
1306a85a 25struct mem_cgroup;
5b99cd0e
HC
26
27/*
28 * Each physical page in the system has a struct page associated with
29 * it to keep track of whatever it is we are using the page for at the
30 * moment. Note that we have no way to track which tasks are using
31 * a page, though if it is a pagecache page, rmap structures can tell us
32 * who is mapping it.
fc9bb8c7
CL
33 *
34 * The objects in struct page are organized in double word blocks in
35 * order to allows us to use atomic double word operations on portions
36 * of struct page. That is currently only used by slub but the arrangement
37 * allows the use of atomic double word operations on the flags/mapping
38 * and lru list pointers also.
5b99cd0e
HC
39 */
40struct page {
fc9bb8c7 41 /* First double word block */
5b99cd0e
HC
42 unsigned long flags; /* Atomic flags, some possibly
43 * updated asynchronously */
8456a648
JK
44 union {
45 struct address_space *mapping; /* If low bit clear, points to
46 * inode address_space, or NULL.
47 * If page mapped as anonymous
48 * memory, low bit is set, and
49 * it points to anon_vma object:
50 * see PAGE_MAPPING_ANON below.
51 */
52 void *s_mem; /* slab first object */
53f9263b 53 atomic_t compound_mapcount; /* first tail page */
9a982250 54 /* page_deferred_list().next -- second tail page */
8456a648
JK
55 };
56
fc9bb8c7 57 /* Second double word */
99691add
VD
58 union {
59 pgoff_t index; /* Our offset within mapping. */
60 void *freelist; /* sl[aou]b first free object */
61 /* page_deferred_list().prev -- second tail page */
62 };
013e8963 63
99691add 64 union {
abca7c49
PS
65#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
66 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
99691add
VD
67 /* Used for cmpxchg_double in slub */
68 unsigned long counters;
abca7c49 69#else
99691add
VD
70 /*
71 * Keep _refcount separate from slub cmpxchg_double data.
72 * As the rest of the double word is protected by slab_lock
73 * but _refcount is not.
74 */
75 unsigned counters;
abca7c49 76#endif
99691add 77 struct {
013e8963 78
99691add 79 union {
0139aa7b 80 /*
99691add
VD
81 * Count of ptes mapped in mms, to show when
82 * page is mapped & limit reverse map searches.
632c0a1a
VD
83 *
84 * Extra information about page type may be
85 * stored here for pages that are never mapped,
86 * in which case the value MUST BE <= -2.
87 * See page-flags.h for more details.
0139aa7b 88 */
99691add
VD
89 atomic_t _mapcount;
90
91 unsigned int active; /* SLAB */
92 struct { /* SLUB */
93 unsigned inuse:16;
94 unsigned objects:15;
95 unsigned frozen:1;
96 };
97 int units; /* SLOB */
fc9bb8c7 98 };
99691add
VD
99 /*
100 * Usage count, *USE WRAPPER FUNCTION* when manual
101 * accounting. See page_ref.h
102 */
103 atomic_t _refcount;
39b26464 104 };
81819f0f 105 };
fc9bb8c7 106
1d798ca3
KS
107 /*
108 * Third double word block
109 *
110 * WARNING: bit 0 of the first word encode PageTail(). That means
111 * the rest users of the storage space MUST NOT use the bit to
112 * avoid collision and false-positive PageTail().
113 */
49e22585
CL
114 union {
115 struct list_head lru; /* Pageout list, eg. active_list
a52633d8 116 * protected by zone_lru_lock !
34bf6ef9
DH
117 * Can be used as a generic list
118 * by the page owner.
fc9bb8c7 119 */
5c2c2587
DW
120 struct dev_pagemap *pgmap; /* ZONE_DEVICE pages are never on an
121 * lru or handled by a slab
122 * allocator, this points to the
123 * hosting device page map.
124 */
49e22585
CL
125 struct { /* slub per cpu partial pages */
126 struct page *next; /* Next partial slab */
127#ifdef CONFIG_64BIT
128 int pages; /* Nr of partial slabs left */
129 int pobjects; /* Approximate # of objects */
130#else
131 short int pages;
132 short int pobjects;
133#endif
134 };
b8c24c4a 135
68126702
JK
136 struct rcu_head rcu_head; /* Used by SLAB
137 * when destroying via RCU
138 */
1d798ca3 139 /* Tail pages of compound page */
e4b294c2 140 struct {
1d798ca3
KS
141 unsigned long compound_head; /* If bit zero is set */
142
143 /* First tail page only */
1965c8b7
KS
144#ifdef CONFIG_64BIT
145 /*
146 * On 64 bit system we have enough space in struct page
147 * to encode compound_dtor and compound_order with
148 * unsigned int. It can help compiler generate better or
149 * smaller code on some archtectures.
150 */
151 unsigned int compound_dtor;
152 unsigned int compound_order;
153#else
f1e61557
KS
154 unsigned short int compound_dtor;
155 unsigned short int compound_order;
1965c8b7 156#endif
e4b294c2
KS
157 };
158
7aa555bf 159#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
1d798ca3
KS
160 struct {
161 unsigned long __pad; /* do not overlay pmd_huge_pte
162 * with compound_head to avoid
163 * possible bit 0 collision.
164 */
165 pgtable_t pmd_huge_pte; /* protected by page->ptl */
166 };
7aa555bf 167#endif
49e22585 168 };
fc9bb8c7
CL
169
170 /* Remainder is not double word aligned */
5b99cd0e 171 union {
5b99cd0e
HC
172 unsigned long private; /* Mapping-private opaque data:
173 * usually used for buffer_heads
174 * if PagePrivate set; used for
175 * swp_entry_t if PageSwapCache;
176 * indicates order in the buddy
177 * system if PG_buddy is set.
178 */
57c1ffce 179#if USE_SPLIT_PTE_PTLOCKS
597d795a 180#if ALLOC_SPLIT_PTLOCKS
539edb58
PZ
181 spinlock_t *ptl;
182#else
183 spinlock_t ptl;
184#endif
5b99cd0e 185#endif
1b4f59e3 186 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
81819f0f 187 };
fc9bb8c7 188
1306a85a
JW
189#ifdef CONFIG_MEMCG
190 struct mem_cgroup *mem_cgroup;
191#endif
192
5b99cd0e
HC
193 /*
194 * On machines where all RAM is mapped into kernel address space,
195 * we can simply calculate the virtual address. On machines with
196 * highmem some memory is mapped into kernel virtual memory
197 * dynamically, so we need a place to store that address.
198 * Note that this field could be 16 bits on x86 ... ;)
199 *
200 * Architectures with slow multiplication can define
201 * WANT_PAGE_VIRTUAL in asm/page.h
202 */
203#if defined(WANT_PAGE_VIRTUAL)
204 void *virtual; /* Kernel virtual address (NULL if
205 not kmapped, ie. highmem) */
206#endif /* WANT_PAGE_VIRTUAL */
dfec072e
VN
207
208#ifdef CONFIG_KMEMCHECK
209 /*
210 * kmemcheck wants to track the status of each byte in a page; this
211 * is a pointer to such a status block. NULL if not tracked.
212 */
213 void *shadow;
214#endif
57e0a030 215
90572890
PZ
216#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
217 int _last_cpupid;
57e0a030 218#endif
fc9bb8c7
CL
219}
220/*
43570fd2
HC
221 * The struct page can be forced to be double word aligned so that atomic ops
222 * on double words work. The SLUB allocator can make use of such a feature.
fc9bb8c7 223 */
43570fd2
HC
224#ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
225 __aligned(2 * sizeof(unsigned long))
fc9bb8c7
CL
226#endif
227;
5b99cd0e 228
b63ae8ca
AD
229#define PAGE_FRAG_CACHE_MAX_SIZE __ALIGN_MASK(32768, ~PAGE_MASK)
230#define PAGE_FRAG_CACHE_MAX_ORDER get_order(PAGE_FRAG_CACHE_MAX_SIZE)
231
232struct page_frag_cache {
233 void * va;
234#if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE)
235 __u16 offset;
236 __u16 size;
237#else
238 __u32 offset;
239#endif
240 /* we maintain a pagecount bias, so that we dont dirty cache line
0139aa7b 241 * containing page->_refcount every time we allocate a fragment.
b63ae8ca
AD
242 */
243 unsigned int pagecnt_bias;
244 bool pfmemalloc;
245};
246
64b990d2 247typedef unsigned long vm_flags_t;
ca16d140 248
8feae131
DH
249/*
250 * A region containing a mapping of a non-memory backed file under NOMMU
251 * conditions. These are held in a global tree and are pinned by the VMAs that
252 * map parts of them.
253 */
254struct vm_region {
255 struct rb_node vm_rb; /* link in global region tree */
ca16d140 256 vm_flags_t vm_flags; /* VMA vm_flags */
8feae131
DH
257 unsigned long vm_start; /* start address of region */
258 unsigned long vm_end; /* region initialised to here */
dd8632a1 259 unsigned long vm_top; /* region allocated to here */
8feae131
DH
260 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
261 struct file *vm_file; /* the backing file or NULL */
b6450630 262 struct file *vm_prfile; /* the virtual backing file or NULL */
8feae131 263
1e2ae599 264 int vm_usage; /* region usage count (access under nommu_region_sem) */
cfe79c00
MF
265 bool vm_icache_flushed : 1; /* true if the icache has been flushed for
266 * this region */
8feae131
DH
267};
268
745f234b
AA
269#ifdef CONFIG_USERFAULTFD
270#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, })
271struct vm_userfaultfd_ctx {
272 struct userfaultfd_ctx *ctx;
273};
274#else /* CONFIG_USERFAULTFD */
275#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {})
276struct vm_userfaultfd_ctx {};
277#endif /* CONFIG_USERFAULTFD */
278
c92ff1bd
MS
279/*
280 * This struct defines a memory VMM memory area. There is one of these
281 * per VM-area/task. A VM area is any part of the process virtual memory
282 * space that has a special rule for the page-fault handlers (ie a shared
283 * library, the executable area etc).
284 */
285struct vm_area_struct {
e4c6bfd2
RR
286 /* The first cache line has the info for VMA tree walking. */
287
c92ff1bd
MS
288 unsigned long vm_start; /* Our start address within vm_mm. */
289 unsigned long vm_end; /* The first byte after our end address
290 within vm_mm. */
291
292 /* linked list of VM areas per task, sorted by address */
297c5eee 293 struct vm_area_struct *vm_next, *vm_prev;
c92ff1bd 294
c92ff1bd
MS
295 struct rb_node vm_rb;
296
d3737187
ML
297 /*
298 * Largest free memory gap in bytes to the left of this VMA.
299 * Either between this VMA and vma->vm_prev, or between one of the
300 * VMAs below us in the VMA rbtree and its ->vm_prev. This helps
301 * get_unmapped_area find a free area of the right size.
302 */
303 unsigned long rb_subtree_gap;
304
e4c6bfd2
RR
305 /* Second cache line starts here. */
306
307 struct mm_struct *vm_mm; /* The address space we belong to. */
308 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
309 unsigned long vm_flags; /* Flags, see mm.h. */
310
c92ff1bd
MS
311 /*
312 * For areas with an address space and backing store,
27ba0644 313 * linkage into the address_space->i_mmap interval tree.
c92ff1bd 314 */
ac51b934
KS
315 struct {
316 struct rb_node rb;
317 unsigned long rb_subtree_last;
c92ff1bd
MS
318 } shared;
319
320 /*
321 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
322 * list, after a COW of one of the file pages. A MAP_SHARED vma
323 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
324 * or brk vma (with NULL file) can only be in an anon_vma list.
325 */
5beb4930
RR
326 struct list_head anon_vma_chain; /* Serialized by mmap_sem &
327 * page_table_lock */
c92ff1bd
MS
328 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
329
330 /* Function pointers to deal with this struct. */
f0f37e2f 331 const struct vm_operations_struct *vm_ops;
c92ff1bd
MS
332
333 /* Information about our backing store: */
334 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
ea1754a0 335 units */
c92ff1bd 336 struct file * vm_file; /* File we map to (can be NULL). */
b6450630 337 struct file *vm_prfile; /* shadow of vm_file */
c92ff1bd 338 void * vm_private_data; /* was vm_pte (shared mem) */
c92ff1bd
MS
339
340#ifndef CONFIG_MMU
8feae131 341 struct vm_region *vm_region; /* NOMMU mapping region */
c92ff1bd
MS
342#endif
343#ifdef CONFIG_NUMA
344 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
345#endif
745f234b 346 struct vm_userfaultfd_ctx vm_userfaultfd_ctx;
3859a271 347} __randomize_layout;
c92ff1bd 348
b564daf8
ON
349struct core_thread {
350 struct task_struct *task;
351 struct core_thread *next;
352};
353
32ecb1f2 354struct core_state {
c5f1cc8c 355 atomic_t nr_threads;
b564daf8 356 struct core_thread dumper;
32ecb1f2
ON
357 struct completion startup;
358};
359
db446a08 360struct kioctx_table;
c92ff1bd 361struct mm_struct {
615d6e87 362 struct vm_area_struct *mmap; /* list of VMAs */
c92ff1bd 363 struct rb_root mm_rb;
615d6e87 364 u32 vmacache_seqnum; /* per-thread vmacache */
efc1a3b1 365#ifdef CONFIG_MMU
c92ff1bd
MS
366 unsigned long (*get_unmapped_area) (struct file *filp,
367 unsigned long addr, unsigned long len,
368 unsigned long pgoff, unsigned long flags);
efc1a3b1 369#endif
c92ff1bd 370 unsigned long mmap_base; /* base of mmap area */
41aacc1e 371 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
1b028f78
DS
372#ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
373 /* Base adresses for compatible mmap() */
374 unsigned long mmap_compat_base;
375 unsigned long mmap_compat_legacy_base;
376#endif
c92ff1bd 377 unsigned long task_size; /* size of task vm space */
d3737187 378 unsigned long highest_vm_end; /* highest vma end address */
c92ff1bd 379 pgd_t * pgd;
b279ddc3
VN
380
381 /**
382 * @mm_users: The number of users including userspace.
383 *
384 * Use mmget()/mmget_not_zero()/mmput() to modify. When this drops
385 * to 0 (i.e. when the task exits and there are no other temporary
386 * reference holders), we also release a reference on @mm_count
387 * (which may then free the &struct mm_struct if @mm_count also
388 * drops to 0).
389 */
390 atomic_t mm_users;
391
392 /**
393 * @mm_count: The number of references to &struct mm_struct
394 * (@mm_users count as 1).
395 *
396 * Use mmgrab()/mmdrop() to modify. When this drops to 0, the
397 * &struct mm_struct is freed.
398 */
399 atomic_t mm_count;
400
dc6c9a35 401 atomic_long_t nr_ptes; /* PTE page table pages */
5a3fbef3 402#if CONFIG_PGTABLE_LEVELS > 2
dc6c9a35 403 atomic_long_t nr_pmds; /* PMD page table pages */
5a3fbef3 404#endif
c92ff1bd 405 int map_count; /* number of VMAs */
481b4bb5 406
c92ff1bd 407 spinlock_t page_table_lock; /* Protects page tables and some counters */
481b4bb5 408 struct rw_semaphore mmap_sem;
c92ff1bd
MS
409
410 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
411 * together off init_mm.mmlist, and are protected
412 * by mmlist_lock
413 */
414
c92ff1bd
MS
415
416 unsigned long hiwater_rss; /* High-watermark of RSS usage */
417 unsigned long hiwater_vm; /* High-water virtual memory usage */
418
e10d59f2
CL
419 unsigned long total_vm; /* Total pages mapped */
420 unsigned long locked_vm; /* Pages that have PG_mlocked set */
421 unsigned long pinned_vm; /* Refcount permanently increased */
30bdbb78
KK
422 unsigned long data_vm; /* VM_WRITE & ~VM_SHARED & ~VM_STACK */
423 unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE & ~VM_STACK */
424 unsigned long stack_vm; /* VM_STACK */
e10d59f2 425 unsigned long def_flags;
c92ff1bd
MS
426 unsigned long start_code, end_code, start_data, end_data;
427 unsigned long start_brk, brk, start_stack;
428 unsigned long arg_start, arg_end, env_start, env_end;
429
430 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
431
d559db08
KH
432 /*
433 * Special counters, in some configurations protected by the
434 * page_table_lock, in other configurations by being atomic.
435 */
436 struct mm_rss_stat rss_stat;
437
801460d0
HS
438 struct linux_binfmt *binfmt;
439
6345d24d
LT
440 cpumask_var_t cpu_vm_mask_var;
441
c92ff1bd
MS
442 /* Architecture-specific MM context */
443 mm_context_t context;
444
c92ff1bd
MS
445 unsigned long flags; /* Must use atomic bitops to access the bits */
446
a94e2d40 447 struct core_state *core_state; /* coredumping support */
858f0993 448#ifdef CONFIG_AIO
db446a08
BL
449 spinlock_t ioctx_lock;
450 struct kioctx_table __rcu *ioctx_table;
858f0993 451#endif
f98bafa0 452#ifdef CONFIG_MEMCG
4cd1a8fc
KM
453 /*
454 * "owner" points to a task that is regarded as the canonical
455 * user/owner of this mm. All of the following must be true in
456 * order for it to be changed:
457 *
458 * current == mm->owner
459 * current->mm != mm
460 * new_owner->mm == mm
461 * new_owner->alloc_lock is held
462 */
4d2deb40 463 struct task_struct __rcu *owner;
78fb7466 464#endif
bfedb589 465 struct user_namespace *user_ns;
925d1c40 466
925d1c40 467 /* store ref to file /proc/<pid>/exe symlink points to */
90f31d0e 468 struct file __rcu *exe_file;
cddb8a5c
AA
469#ifdef CONFIG_MMU_NOTIFIER
470 struct mmu_notifier_mm *mmu_notifier_mm;
e7a00c45 471#endif
e009bb30 472#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
e7a00c45 473 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
cddb8a5c 474#endif
6345d24d
LT
475#ifdef CONFIG_CPUMASK_OFFSTACK
476 struct cpumask cpumask_allocation;
cbee9f88
PZ
477#endif
478#ifdef CONFIG_NUMA_BALANCING
479 /*
34f0315a
MG
480 * numa_next_scan is the next time that the PTEs will be marked
481 * pte_numa. NUMA hinting faults will gather statistics and migrate
482 * pages to new nodes if necessary.
cbee9f88
PZ
483 */
484 unsigned long numa_next_scan;
485
6e5fb223
PZ
486 /* Restart point for scanning and setting pte_numa */
487 unsigned long numa_scan_offset;
488
cbee9f88
PZ
489 /* numa_scan_seq prevents two threads setting pte_numa */
490 int numa_scan_seq;
20841405 491#endif
20841405
RR
492 /*
493 * An operation with batched TLB flushing is going on. Anything that
494 * can move process memory needs to flush the TLB when moving a
495 * PROT_NONE or PROT_NUMA mapped page.
496 */
16af97dc 497 atomic_t tlb_flush_pending;
3ea27719
MG
498#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
499 /* See flush_tlb_batched_pending() */
500 bool tlb_flush_batched;
6345d24d 501#endif
d4b3b638 502 struct uprobes_state uprobes_state;
5d317b2b
NH
503#ifdef CONFIG_HUGETLB_PAGE
504 atomic_long_t hugetlb_usage;
505#endif
ec8d7c14 506 struct work_struct async_put_work;
3859a271 507} __randomize_layout;
c92ff1bd 508
abe722a1
IM
509extern struct mm_struct init_mm;
510
6345d24d
LT
511static inline void mm_init_cpumask(struct mm_struct *mm)
512{
513#ifdef CONFIG_CPUMASK_OFFSTACK
514 mm->cpu_vm_mask_var = &mm->cpumask_allocation;
515#endif
41f727fd 516 cpumask_clear(mm->cpu_vm_mask_var);
6345d24d
LT
517}
518
45e575ab 519/* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
de03c72c
KM
520static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
521{
522 return mm->cpu_vm_mask_var;
523}
45e575ab 524
56236a59
MK
525struct mmu_gather;
526extern void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm,
527 unsigned long start, unsigned long end);
528extern void tlb_finish_mmu(struct mmu_gather *tlb,
529 unsigned long start, unsigned long end);
530
20841405
RR
531/*
532 * Memory barriers to keep this state in sync are graciously provided by
533 * the page table locks, outside of which no page table modifications happen.
0a2c4048
NA
534 * The barriers are used to ensure the order between tlb_flush_pending updates,
535 * which happen while the lock is not taken, and the PTE updates, which happen
536 * while the lock is taken, are serialized.
20841405
RR
537 */
538static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
539{
16af97dc 540 return atomic_read(&mm->tlb_flush_pending) > 0;
20841405 541}
16af97dc 542
99baac21
MK
543/*
544 * Returns true if there are two above TLB batching threads in parallel.
545 */
546static inline bool mm_tlb_flush_nested(struct mm_struct *mm)
547{
548 return atomic_read(&mm->tlb_flush_pending) > 1;
549}
550
16af97dc 551static inline void init_tlb_flush_pending(struct mm_struct *mm)
20841405 552{
16af97dc
NA
553 atomic_set(&mm->tlb_flush_pending, 0);
554}
555
556static inline void inc_tlb_flush_pending(struct mm_struct *mm)
557{
558 atomic_inc(&mm->tlb_flush_pending);
af2c1401
MG
559
560 /*
16af97dc 561 * Guarantee that the tlb_flush_pending increase does not leak into the
af2c1401
MG
562 * critical section updating the page tables
563 */
564 smp_mb__before_spinlock();
20841405 565}
16af97dc 566
20841405 567/* Clearing is done after a TLB flush, which also provides a barrier. */
16af97dc 568static inline void dec_tlb_flush_pending(struct mm_struct *mm)
20841405 569{
0a2c4048
NA
570 /*
571 * Guarantee that the tlb_flush_pending does not not leak into the
572 * critical section, since we must order the PTE change and changes to
573 * the pending TLB flush indication. We could have relied on TLB flush
574 * as a memory barrier, but this behavior is not clearly documented.
575 */
576 smp_mb__before_atomic();
16af97dc 577 atomic_dec(&mm->tlb_flush_pending);
20841405 578}
20841405 579
f872f540
AL
580struct vm_fault;
581
582struct vm_special_mapping {
583 const char *name; /* The name, e.g. "[vdso]". */
584
585 /*
586 * If .fault is not provided, this points to a
587 * NULL-terminated array of pages that back the special mapping.
588 *
589 * This must not be NULL unless .fault is provided.
590 */
a62c34bd 591 struct page **pages;
f872f540
AL
592
593 /*
594 * If non-NULL, then this is called to resolve page faults
595 * on the special mapping. If used, .pages is not checked.
596 */
597 int (*fault)(const struct vm_special_mapping *sm,
598 struct vm_area_struct *vma,
599 struct vm_fault *vmf);
b059a453
DS
600
601 int (*mremap)(const struct vm_special_mapping *sm,
602 struct vm_area_struct *new_vma);
a62c34bd
AL
603};
604
d17d8f9d
DH
605enum tlb_flush_reason {
606 TLB_FLUSH_ON_TASK_SWITCH,
607 TLB_REMOTE_SHOOTDOWN,
608 TLB_LOCAL_SHOOTDOWN,
609 TLB_LOCAL_MM_SHOOTDOWN,
5b74283a 610 TLB_REMOTE_SEND_IPI,
d17d8f9d
DH
611 NR_TLB_FLUSH_REASONS,
612};
613
bd6dace7
TH
614 /*
615 * A swap entry has to fit into a "unsigned long", as the entry is hidden
616 * in the "index" field of the swapper address space.
617 */
618typedef struct {
619 unsigned long val;
620} swp_entry_t;
621
5b99cd0e 622#endif /* _LINUX_MM_TYPES_H */