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