Merge tag 'i2c-for-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa...
[linux-2.6-microblaze.git] / include / linux / mm_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_MM_TYPES_H
3 #define _LINUX_MM_TYPES_H
4
5 #include <linux/mm_types_task.h>
6
7 #include <linux/auxvec.h>
8 #include <linux/kref.h>
9 #include <linux/list.h>
10 #include <linux/spinlock.h>
11 #include <linux/rbtree.h>
12 #include <linux/maple_tree.h>
13 #include <linux/rwsem.h>
14 #include <linux/completion.h>
15 #include <linux/cpumask.h>
16 #include <linux/uprobes.h>
17 #include <linux/rcupdate.h>
18 #include <linux/page-flags-layout.h>
19 #include <linux/workqueue.h>
20 #include <linux/seqlock.h>
21 #include <linux/percpu_counter.h>
22
23 #include <asm/mmu.h>
24
25 #ifndef AT_VECTOR_SIZE_ARCH
26 #define AT_VECTOR_SIZE_ARCH 0
27 #endif
28 #define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
29
30 #define INIT_PASID      0
31
32 struct address_space;
33 struct mem_cgroup;
34
35 /*
36  * Each physical page in the system has a struct page associated with
37  * it to keep track of whatever it is we are using the page for at the
38  * moment. Note that we have no way to track which tasks are using
39  * a page, though if it is a pagecache page, rmap structures can tell us
40  * who is mapping it.
41  *
42  * If you allocate the page using alloc_pages(), you can use some of the
43  * space in struct page for your own purposes.  The five words in the main
44  * union are available, except for bit 0 of the first word which must be
45  * kept clear.  Many users use this word to store a pointer to an object
46  * which is guaranteed to be aligned.  If you use the same storage as
47  * page->mapping, you must restore it to NULL before freeing the page.
48  *
49  * If your page will not be mapped to userspace, you can also use the four
50  * bytes in the mapcount union, but you must call page_mapcount_reset()
51  * before freeing it.
52  *
53  * If you want to use the refcount field, it must be used in such a way
54  * that other CPUs temporarily incrementing and then decrementing the
55  * refcount does not cause problems.  On receiving the page from
56  * alloc_pages(), the refcount will be positive.
57  *
58  * If you allocate pages of order > 0, you can use some of the fields
59  * in each subpage, but you may need to restore some of their values
60  * afterwards.
61  *
62  * SLUB uses cmpxchg_double() to atomically update its freelist and counters.
63  * That requires that freelist & counters in struct slab be adjacent and
64  * double-word aligned. Because struct slab currently just reinterprets the
65  * bits of struct page, we align all struct pages to double-word boundaries,
66  * and ensure that 'freelist' is aligned within struct slab.
67  */
68 #ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
69 #define _struct_page_alignment  __aligned(2 * sizeof(unsigned long))
70 #else
71 #define _struct_page_alignment  __aligned(sizeof(unsigned long))
72 #endif
73
74 struct page {
75         unsigned long flags;            /* Atomic flags, some possibly
76                                          * updated asynchronously */
77         /*
78          * Five words (20/40 bytes) are available in this union.
79          * WARNING: bit 0 of the first word is used for PageTail(). That
80          * means the other users of this union MUST NOT use the bit to
81          * avoid collision and false-positive PageTail().
82          */
83         union {
84                 struct {        /* Page cache and anonymous pages */
85                         /**
86                          * @lru: Pageout list, eg. active_list protected by
87                          * lruvec->lru_lock.  Sometimes used as a generic list
88                          * by the page owner.
89                          */
90                         union {
91                                 struct list_head lru;
92
93                                 /* Or, for the Unevictable "LRU list" slot */
94                                 struct {
95                                         /* Always even, to negate PageTail */
96                                         void *__filler;
97                                         /* Count page's or folio's mlocks */
98                                         unsigned int mlock_count;
99                                 };
100
101                                 /* Or, free page */
102                                 struct list_head buddy_list;
103                                 struct list_head pcp_list;
104                         };
105                         /* See page-flags.h for PAGE_MAPPING_FLAGS */
106                         struct address_space *mapping;
107                         union {
108                                 pgoff_t index;          /* Our offset within mapping. */
109                                 unsigned long share;    /* share count for fsdax */
110                         };
111                         /**
112                          * @private: Mapping-private opaque data.
113                          * Usually used for buffer_heads if PagePrivate.
114                          * Used for swp_entry_t if PageSwapCache.
115                          * Indicates order in the buddy system if PageBuddy.
116                          */
117                         unsigned long private;
118                 };
119                 struct {        /* page_pool used by netstack */
120                         /**
121                          * @pp_magic: magic value to avoid recycling non
122                          * page_pool allocated pages.
123                          */
124                         unsigned long pp_magic;
125                         struct page_pool *pp;
126                         unsigned long _pp_mapping_pad;
127                         unsigned long dma_addr;
128                         union {
129                                 /**
130                                  * dma_addr_upper: might require a 64-bit
131                                  * value on 32-bit architectures.
132                                  */
133                                 unsigned long dma_addr_upper;
134                                 /**
135                                  * For frag page support, not supported in
136                                  * 32-bit architectures with 64-bit DMA.
137                                  */
138                                 atomic_long_t pp_frag_count;
139                         };
140                 };
141                 struct {        /* Tail pages of compound page */
142                         unsigned long compound_head;    /* Bit zero is set */
143                 };
144                 struct {        /* Page table pages */
145                         unsigned long _pt_pad_1;        /* compound_head */
146                         pgtable_t pmd_huge_pte; /* protected by page->ptl */
147                         unsigned long _pt_pad_2;        /* mapping */
148                         union {
149                                 struct mm_struct *pt_mm; /* x86 pgds only */
150                                 atomic_t pt_frag_refcount; /* powerpc */
151                         };
152 #if ALLOC_SPLIT_PTLOCKS
153                         spinlock_t *ptl;
154 #else
155                         spinlock_t ptl;
156 #endif
157                 };
158                 struct {        /* ZONE_DEVICE pages */
159                         /** @pgmap: Points to the hosting device page map. */
160                         struct dev_pagemap *pgmap;
161                         void *zone_device_data;
162                         /*
163                          * ZONE_DEVICE private pages are counted as being
164                          * mapped so the next 3 words hold the mapping, index,
165                          * and private fields from the source anonymous or
166                          * page cache page while the page is migrated to device
167                          * private memory.
168                          * ZONE_DEVICE MEMORY_DEVICE_FS_DAX pages also
169                          * use the mapping, index, and private fields when
170                          * pmem backed DAX files are mapped.
171                          */
172                 };
173
174                 /** @rcu_head: You can use this to free a page by RCU. */
175                 struct rcu_head rcu_head;
176         };
177
178         union {         /* This union is 4 bytes in size. */
179                 /*
180                  * If the page can be mapped to userspace, encodes the number
181                  * of times this page is referenced by a page table.
182                  */
183                 atomic_t _mapcount;
184
185                 /*
186                  * If the page is neither PageSlab nor mappable to userspace,
187                  * the value stored here may help determine what this page
188                  * is used for.  See page-flags.h for a list of page types
189                  * which are currently stored here.
190                  */
191                 unsigned int page_type;
192         };
193
194         /* Usage count. *DO NOT USE DIRECTLY*. See page_ref.h */
195         atomic_t _refcount;
196
197 #ifdef CONFIG_MEMCG
198         unsigned long memcg_data;
199 #endif
200
201         /*
202          * On machines where all RAM is mapped into kernel address space,
203          * we can simply calculate the virtual address. On machines with
204          * highmem some memory is mapped into kernel virtual memory
205          * dynamically, so we need a place to store that address.
206          * Note that this field could be 16 bits on x86 ... ;)
207          *
208          * Architectures with slow multiplication can define
209          * WANT_PAGE_VIRTUAL in asm/page.h
210          */
211 #if defined(WANT_PAGE_VIRTUAL)
212         void *virtual;                  /* Kernel virtual address (NULL if
213                                            not kmapped, ie. highmem) */
214 #endif /* WANT_PAGE_VIRTUAL */
215
216 #ifdef CONFIG_KMSAN
217         /*
218          * KMSAN metadata for this page:
219          *  - shadow page: every bit indicates whether the corresponding
220          *    bit of the original page is initialized (0) or not (1);
221          *  - origin page: every 4 bytes contain an id of the stack trace
222          *    where the uninitialized value was created.
223          */
224         struct page *kmsan_shadow;
225         struct page *kmsan_origin;
226 #endif
227
228 #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
229         int _last_cpupid;
230 #endif
231 } _struct_page_alignment;
232
233 /*
234  * struct encoded_page - a nonexistent type marking this pointer
235  *
236  * An 'encoded_page' pointer is a pointer to a regular 'struct page', but
237  * with the low bits of the pointer indicating extra context-dependent
238  * information. Not super-common, but happens in mmu_gather and mlock
239  * handling, and this acts as a type system check on that use.
240  *
241  * We only really have two guaranteed bits in general, although you could
242  * play with 'struct page' alignment (see CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
243  * for more.
244  *
245  * Use the supplied helper functions to endcode/decode the pointer and bits.
246  */
247 struct encoded_page;
248 #define ENCODE_PAGE_BITS 3ul
249 static __always_inline struct encoded_page *encode_page(struct page *page, unsigned long flags)
250 {
251         BUILD_BUG_ON(flags > ENCODE_PAGE_BITS);
252         return (struct encoded_page *)(flags | (unsigned long)page);
253 }
254
255 static inline unsigned long encoded_page_flags(struct encoded_page *page)
256 {
257         return ENCODE_PAGE_BITS & (unsigned long)page;
258 }
259
260 static inline struct page *encoded_page_ptr(struct encoded_page *page)
261 {
262         return (struct page *)(~ENCODE_PAGE_BITS & (unsigned long)page);
263 }
264
265 /**
266  * struct folio - Represents a contiguous set of bytes.
267  * @flags: Identical to the page flags.
268  * @lru: Least Recently Used list; tracks how recently this folio was used.
269  * @mlock_count: Number of times this folio has been pinned by mlock().
270  * @mapping: The file this page belongs to, or refers to the anon_vma for
271  *    anonymous memory.
272  * @index: Offset within the file, in units of pages.  For anonymous memory,
273  *    this is the index from the beginning of the mmap.
274  * @private: Filesystem per-folio data (see folio_attach_private()).
275  *    Used for swp_entry_t if folio_test_swapcache().
276  * @_mapcount: Do not access this member directly.  Use folio_mapcount() to
277  *    find out how many times this folio is mapped by userspace.
278  * @_refcount: Do not access this member directly.  Use folio_ref_count()
279  *    to find how many references there are to this folio.
280  * @memcg_data: Memory Control Group data.
281  * @_folio_dtor: Which destructor to use for this folio.
282  * @_folio_order: Do not use directly, call folio_order().
283  * @_entire_mapcount: Do not use directly, call folio_entire_mapcount().
284  * @_nr_pages_mapped: Do not use directly, call folio_mapcount().
285  * @_pincount: Do not use directly, call folio_maybe_dma_pinned().
286  * @_folio_nr_pages: Do not use directly, call folio_nr_pages().
287  * @_hugetlb_subpool: Do not use directly, use accessor in hugetlb.h.
288  * @_hugetlb_cgroup: Do not use directly, use accessor in hugetlb_cgroup.h.
289  * @_hugetlb_cgroup_rsvd: Do not use directly, use accessor in hugetlb_cgroup.h.
290  * @_hugetlb_hwpoison: Do not use directly, call raw_hwp_list_head().
291  * @_deferred_list: Folios to be split under memory pressure.
292  *
293  * A folio is a physically, virtually and logically contiguous set
294  * of bytes.  It is a power-of-two in size, and it is aligned to that
295  * same power-of-two.  It is at least as large as %PAGE_SIZE.  If it is
296  * in the page cache, it is at a file offset which is a multiple of that
297  * power-of-two.  It may be mapped into userspace at an address which is
298  * at an arbitrary page offset, but its kernel virtual address is aligned
299  * to its size.
300  */
301 struct folio {
302         /* private: don't document the anon union */
303         union {
304                 struct {
305         /* public: */
306                         unsigned long flags;
307                         union {
308                                 struct list_head lru;
309         /* private: avoid cluttering the output */
310                                 struct {
311                                         void *__filler;
312         /* public: */
313                                         unsigned int mlock_count;
314         /* private: */
315                                 };
316         /* public: */
317                         };
318                         struct address_space *mapping;
319                         pgoff_t index;
320                         void *private;
321                         atomic_t _mapcount;
322                         atomic_t _refcount;
323 #ifdef CONFIG_MEMCG
324                         unsigned long memcg_data;
325 #endif
326         /* private: the union with struct page is transitional */
327                 };
328                 struct page page;
329         };
330         union {
331                 struct {
332                         unsigned long _flags_1;
333                         unsigned long _head_1;
334         /* public: */
335                         unsigned char _folio_dtor;
336                         unsigned char _folio_order;
337                         atomic_t _entire_mapcount;
338                         atomic_t _nr_pages_mapped;
339                         atomic_t _pincount;
340 #ifdef CONFIG_64BIT
341                         unsigned int _folio_nr_pages;
342 #endif
343         /* private: the union with struct page is transitional */
344                 };
345                 struct page __page_1;
346         };
347         union {
348                 struct {
349                         unsigned long _flags_2;
350                         unsigned long _head_2;
351         /* public: */
352                         void *_hugetlb_subpool;
353                         void *_hugetlb_cgroup;
354                         void *_hugetlb_cgroup_rsvd;
355                         void *_hugetlb_hwpoison;
356         /* private: the union with struct page is transitional */
357                 };
358                 struct {
359                         unsigned long _flags_2a;
360                         unsigned long _head_2a;
361         /* public: */
362                         struct list_head _deferred_list;
363         /* private: the union with struct page is transitional */
364                 };
365                 struct page __page_2;
366         };
367 };
368
369 #define FOLIO_MATCH(pg, fl)                                             \
370         static_assert(offsetof(struct page, pg) == offsetof(struct folio, fl))
371 FOLIO_MATCH(flags, flags);
372 FOLIO_MATCH(lru, lru);
373 FOLIO_MATCH(mapping, mapping);
374 FOLIO_MATCH(compound_head, lru);
375 FOLIO_MATCH(index, index);
376 FOLIO_MATCH(private, private);
377 FOLIO_MATCH(_mapcount, _mapcount);
378 FOLIO_MATCH(_refcount, _refcount);
379 #ifdef CONFIG_MEMCG
380 FOLIO_MATCH(memcg_data, memcg_data);
381 #endif
382 #undef FOLIO_MATCH
383 #define FOLIO_MATCH(pg, fl)                                             \
384         static_assert(offsetof(struct folio, fl) ==                     \
385                         offsetof(struct page, pg) + sizeof(struct page))
386 FOLIO_MATCH(flags, _flags_1);
387 FOLIO_MATCH(compound_head, _head_1);
388 #undef FOLIO_MATCH
389 #define FOLIO_MATCH(pg, fl)                                             \
390         static_assert(offsetof(struct folio, fl) ==                     \
391                         offsetof(struct page, pg) + 2 * sizeof(struct page))
392 FOLIO_MATCH(flags, _flags_2);
393 FOLIO_MATCH(compound_head, _head_2);
394 #undef FOLIO_MATCH
395
396 /*
397  * Used for sizing the vmemmap region on some architectures
398  */
399 #define STRUCT_PAGE_MAX_SHIFT   (order_base_2(sizeof(struct page)))
400
401 #define PAGE_FRAG_CACHE_MAX_SIZE        __ALIGN_MASK(32768, ~PAGE_MASK)
402 #define PAGE_FRAG_CACHE_MAX_ORDER       get_order(PAGE_FRAG_CACHE_MAX_SIZE)
403
404 /*
405  * page_private can be used on tail pages.  However, PagePrivate is only
406  * checked by the VM on the head page.  So page_private on the tail pages
407  * should be used for data that's ancillary to the head page (eg attaching
408  * buffer heads to tail pages after attaching buffer heads to the head page)
409  */
410 #define page_private(page)              ((page)->private)
411
412 static inline void set_page_private(struct page *page, unsigned long private)
413 {
414         page->private = private;
415 }
416
417 static inline void *folio_get_private(struct folio *folio)
418 {
419         return folio->private;
420 }
421
422 struct page_frag_cache {
423         void * va;
424 #if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE)
425         __u16 offset;
426         __u16 size;
427 #else
428         __u32 offset;
429 #endif
430         /* we maintain a pagecount bias, so that we dont dirty cache line
431          * containing page->_refcount every time we allocate a fragment.
432          */
433         unsigned int            pagecnt_bias;
434         bool pfmemalloc;
435 };
436
437 typedef unsigned long vm_flags_t;
438
439 /*
440  * A region containing a mapping of a non-memory backed file under NOMMU
441  * conditions.  These are held in a global tree and are pinned by the VMAs that
442  * map parts of them.
443  */
444 struct vm_region {
445         struct rb_node  vm_rb;          /* link in global region tree */
446         vm_flags_t      vm_flags;       /* VMA vm_flags */
447         unsigned long   vm_start;       /* start address of region */
448         unsigned long   vm_end;         /* region initialised to here */
449         unsigned long   vm_top;         /* region allocated to here */
450         unsigned long   vm_pgoff;       /* the offset in vm_file corresponding to vm_start */
451         struct file     *vm_file;       /* the backing file or NULL */
452
453         int             vm_usage;       /* region usage count (access under nommu_region_sem) */
454         bool            vm_icache_flushed : 1; /* true if the icache has been flushed for
455                                                 * this region */
456 };
457
458 #ifdef CONFIG_USERFAULTFD
459 #define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, })
460 struct vm_userfaultfd_ctx {
461         struct userfaultfd_ctx *ctx;
462 };
463 #else /* CONFIG_USERFAULTFD */
464 #define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {})
465 struct vm_userfaultfd_ctx {};
466 #endif /* CONFIG_USERFAULTFD */
467
468 struct anon_vma_name {
469         struct kref kref;
470         /* The name needs to be at the end because it is dynamically sized. */
471         char name[];
472 };
473
474 struct vma_lock {
475         struct rw_semaphore lock;
476 };
477
478 struct vma_numab_state {
479         unsigned long next_scan;
480         unsigned long next_pid_reset;
481         unsigned long access_pids[2];
482 };
483
484 /*
485  * This struct describes a virtual memory area. There is one of these
486  * per VM-area/task. A VM area is any part of the process virtual memory
487  * space that has a special rule for the page-fault handlers (ie a shared
488  * library, the executable area etc).
489  */
490 struct vm_area_struct {
491         /* The first cache line has the info for VMA tree walking. */
492
493         union {
494                 struct {
495                         /* VMA covers [vm_start; vm_end) addresses within mm */
496                         unsigned long vm_start;
497                         unsigned long vm_end;
498                 };
499 #ifdef CONFIG_PER_VMA_LOCK
500                 struct rcu_head vm_rcu; /* Used for deferred freeing. */
501 #endif
502         };
503
504         struct mm_struct *vm_mm;        /* The address space we belong to. */
505         pgprot_t vm_page_prot;          /* Access permissions of this VMA. */
506
507         /*
508          * Flags, see mm.h.
509          * To modify use vm_flags_{init|reset|set|clear|mod} functions.
510          */
511         union {
512                 const vm_flags_t vm_flags;
513                 vm_flags_t __private __vm_flags;
514         };
515
516 #ifdef CONFIG_PER_VMA_LOCK
517         int vm_lock_seq;
518         struct vma_lock *vm_lock;
519
520         /* Flag to indicate areas detached from the mm->mm_mt tree */
521         bool detached;
522 #endif
523
524         /*
525          * For areas with an address space and backing store,
526          * linkage into the address_space->i_mmap interval tree.
527          *
528          */
529         struct {
530                 struct rb_node rb;
531                 unsigned long rb_subtree_last;
532         } shared;
533
534         /*
535          * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
536          * list, after a COW of one of the file pages.  A MAP_SHARED vma
537          * can only be in the i_mmap tree.  An anonymous MAP_PRIVATE, stack
538          * or brk vma (with NULL file) can only be in an anon_vma list.
539          */
540         struct list_head anon_vma_chain; /* Serialized by mmap_lock &
541                                           * page_table_lock */
542         struct anon_vma *anon_vma;      /* Serialized by page_table_lock */
543
544         /* Function pointers to deal with this struct. */
545         const struct vm_operations_struct *vm_ops;
546
547         /* Information about our backing store: */
548         unsigned long vm_pgoff;         /* Offset (within vm_file) in PAGE_SIZE
549                                            units */
550         struct file * vm_file;          /* File we map to (can be NULL). */
551         void * vm_private_data;         /* was vm_pte (shared mem) */
552
553 #ifdef CONFIG_ANON_VMA_NAME
554         /*
555          * For private and shared anonymous mappings, a pointer to a null
556          * terminated string containing the name given to the vma, or NULL if
557          * unnamed. Serialized by mmap_lock. Use anon_vma_name to access.
558          */
559         struct anon_vma_name *anon_name;
560 #endif
561 #ifdef CONFIG_SWAP
562         atomic_long_t swap_readahead_info;
563 #endif
564 #ifndef CONFIG_MMU
565         struct vm_region *vm_region;    /* NOMMU mapping region */
566 #endif
567 #ifdef CONFIG_NUMA
568         struct mempolicy *vm_policy;    /* NUMA policy for the VMA */
569 #endif
570 #ifdef CONFIG_NUMA_BALANCING
571         struct vma_numab_state *numab_state;    /* NUMA Balancing state */
572 #endif
573         struct vm_userfaultfd_ctx vm_userfaultfd_ctx;
574 } __randomize_layout;
575
576 #ifdef CONFIG_SCHED_MM_CID
577 struct mm_cid {
578         u64 time;
579         int cid;
580 };
581 #endif
582
583 struct kioctx_table;
584 struct mm_struct {
585         struct {
586                 /*
587                  * Fields which are often written to are placed in a separate
588                  * cache line.
589                  */
590                 struct {
591                         /**
592                          * @mm_count: The number of references to &struct
593                          * mm_struct (@mm_users count as 1).
594                          *
595                          * Use mmgrab()/mmdrop() to modify. When this drops to
596                          * 0, the &struct mm_struct is freed.
597                          */
598                         atomic_t mm_count;
599                 } ____cacheline_aligned_in_smp;
600
601                 struct maple_tree mm_mt;
602 #ifdef CONFIG_MMU
603                 unsigned long (*get_unmapped_area) (struct file *filp,
604                                 unsigned long addr, unsigned long len,
605                                 unsigned long pgoff, unsigned long flags);
606 #endif
607                 unsigned long mmap_base;        /* base of mmap area */
608                 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
609 #ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
610                 /* Base addresses for compatible mmap() */
611                 unsigned long mmap_compat_base;
612                 unsigned long mmap_compat_legacy_base;
613 #endif
614                 unsigned long task_size;        /* size of task vm space */
615                 pgd_t * pgd;
616
617 #ifdef CONFIG_MEMBARRIER
618                 /**
619                  * @membarrier_state: Flags controlling membarrier behavior.
620                  *
621                  * This field is close to @pgd to hopefully fit in the same
622                  * cache-line, which needs to be touched by switch_mm().
623                  */
624                 atomic_t membarrier_state;
625 #endif
626
627                 /**
628                  * @mm_users: The number of users including userspace.
629                  *
630                  * Use mmget()/mmget_not_zero()/mmput() to modify. When this
631                  * drops to 0 (i.e. when the task exits and there are no other
632                  * temporary reference holders), we also release a reference on
633                  * @mm_count (which may then free the &struct mm_struct if
634                  * @mm_count also drops to 0).
635                  */
636                 atomic_t mm_users;
637
638 #ifdef CONFIG_SCHED_MM_CID
639                 /**
640                  * @pcpu_cid: Per-cpu current cid.
641                  *
642                  * Keep track of the currently allocated mm_cid for each cpu.
643                  * The per-cpu mm_cid values are serialized by their respective
644                  * runqueue locks.
645                  */
646                 struct mm_cid __percpu *pcpu_cid;
647                 /*
648                  * @mm_cid_next_scan: Next mm_cid scan (in jiffies).
649                  *
650                  * When the next mm_cid scan is due (in jiffies).
651                  */
652                 unsigned long mm_cid_next_scan;
653 #endif
654 #ifdef CONFIG_MMU
655                 atomic_long_t pgtables_bytes;   /* size of all page tables */
656 #endif
657                 int map_count;                  /* number of VMAs */
658
659                 spinlock_t page_table_lock; /* Protects page tables and some
660                                              * counters
661                                              */
662                 /*
663                  * With some kernel config, the current mmap_lock's offset
664                  * inside 'mm_struct' is at 0x120, which is very optimal, as
665                  * its two hot fields 'count' and 'owner' sit in 2 different
666                  * cachelines,  and when mmap_lock is highly contended, both
667                  * of the 2 fields will be accessed frequently, current layout
668                  * will help to reduce cache bouncing.
669                  *
670                  * So please be careful with adding new fields before
671                  * mmap_lock, which can easily push the 2 fields into one
672                  * cacheline.
673                  */
674                 struct rw_semaphore mmap_lock;
675
676                 struct list_head mmlist; /* List of maybe swapped mm's. These
677                                           * are globally strung together off
678                                           * init_mm.mmlist, and are protected
679                                           * by mmlist_lock
680                                           */
681 #ifdef CONFIG_PER_VMA_LOCK
682                 int mm_lock_seq;
683 #endif
684
685
686                 unsigned long hiwater_rss; /* High-watermark of RSS usage */
687                 unsigned long hiwater_vm;  /* High-water virtual memory usage */
688
689                 unsigned long total_vm;    /* Total pages mapped */
690                 unsigned long locked_vm;   /* Pages that have PG_mlocked set */
691                 atomic64_t    pinned_vm;   /* Refcount permanently increased */
692                 unsigned long data_vm;     /* VM_WRITE & ~VM_SHARED & ~VM_STACK */
693                 unsigned long exec_vm;     /* VM_EXEC & ~VM_WRITE & ~VM_STACK */
694                 unsigned long stack_vm;    /* VM_STACK */
695                 unsigned long def_flags;
696
697                 /**
698                  * @write_protect_seq: Locked when any thread is write
699                  * protecting pages mapped by this mm to enforce a later COW,
700                  * for instance during page table copying for fork().
701                  */
702                 seqcount_t write_protect_seq;
703
704                 spinlock_t arg_lock; /* protect the below fields */
705
706                 unsigned long start_code, end_code, start_data, end_data;
707                 unsigned long start_brk, brk, start_stack;
708                 unsigned long arg_start, arg_end, env_start, env_end;
709
710                 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
711
712                 struct percpu_counter rss_stat[NR_MM_COUNTERS];
713
714                 struct linux_binfmt *binfmt;
715
716                 /* Architecture-specific MM context */
717                 mm_context_t context;
718
719                 unsigned long flags; /* Must use atomic bitops to access */
720
721 #ifdef CONFIG_AIO
722                 spinlock_t                      ioctx_lock;
723                 struct kioctx_table __rcu       *ioctx_table;
724 #endif
725 #ifdef CONFIG_MEMCG
726                 /*
727                  * "owner" points to a task that is regarded as the canonical
728                  * user/owner of this mm. All of the following must be true in
729                  * order for it to be changed:
730                  *
731                  * current == mm->owner
732                  * current->mm != mm
733                  * new_owner->mm == mm
734                  * new_owner->alloc_lock is held
735                  */
736                 struct task_struct __rcu *owner;
737 #endif
738                 struct user_namespace *user_ns;
739
740                 /* store ref to file /proc/<pid>/exe symlink points to */
741                 struct file __rcu *exe_file;
742 #ifdef CONFIG_MMU_NOTIFIER
743                 struct mmu_notifier_subscriptions *notifier_subscriptions;
744 #endif
745 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
746                 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
747 #endif
748 #ifdef CONFIG_NUMA_BALANCING
749                 /*
750                  * numa_next_scan is the next time that PTEs will be remapped
751                  * PROT_NONE to trigger NUMA hinting faults; such faults gather
752                  * statistics and migrate pages to new nodes if necessary.
753                  */
754                 unsigned long numa_next_scan;
755
756                 /* Restart point for scanning and remapping PTEs. */
757                 unsigned long numa_scan_offset;
758
759                 /* numa_scan_seq prevents two threads remapping PTEs. */
760                 int numa_scan_seq;
761 #endif
762                 /*
763                  * An operation with batched TLB flushing is going on. Anything
764                  * that can move process memory needs to flush the TLB when
765                  * moving a PROT_NONE mapped page.
766                  */
767                 atomic_t tlb_flush_pending;
768 #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
769                 /* See flush_tlb_batched_pending() */
770                 atomic_t tlb_flush_batched;
771 #endif
772                 struct uprobes_state uprobes_state;
773 #ifdef CONFIG_PREEMPT_RT
774                 struct rcu_head delayed_drop;
775 #endif
776 #ifdef CONFIG_HUGETLB_PAGE
777                 atomic_long_t hugetlb_usage;
778 #endif
779                 struct work_struct async_put_work;
780
781 #ifdef CONFIG_IOMMU_SVA
782                 u32 pasid;
783 #endif
784 #ifdef CONFIG_KSM
785                 /*
786                  * Represent how many pages of this process are involved in KSM
787                  * merging.
788                  */
789                 unsigned long ksm_merging_pages;
790                 /*
791                  * Represent how many pages are checked for ksm merging
792                  * including merged and not merged.
793                  */
794                 unsigned long ksm_rmap_items;
795 #endif
796 #ifdef CONFIG_LRU_GEN
797                 struct {
798                         /* this mm_struct is on lru_gen_mm_list */
799                         struct list_head list;
800                         /*
801                          * Set when switching to this mm_struct, as a hint of
802                          * whether it has been used since the last time per-node
803                          * page table walkers cleared the corresponding bits.
804                          */
805                         unsigned long bitmap;
806 #ifdef CONFIG_MEMCG
807                         /* points to the memcg of "owner" above */
808                         struct mem_cgroup *memcg;
809 #endif
810                 } lru_gen;
811 #endif /* CONFIG_LRU_GEN */
812         } __randomize_layout;
813
814         /*
815          * The mm_cpumask needs to be at the end of mm_struct, because it
816          * is dynamically sized based on nr_cpu_ids.
817          */
818         unsigned long cpu_bitmap[];
819 };
820
821 #define MM_MT_FLAGS     (MT_FLAGS_ALLOC_RANGE | MT_FLAGS_LOCK_EXTERN | \
822                          MT_FLAGS_USE_RCU)
823 extern struct mm_struct init_mm;
824
825 /* Pointer magic because the dynamic array size confuses some compilers. */
826 static inline void mm_init_cpumask(struct mm_struct *mm)
827 {
828         unsigned long cpu_bitmap = (unsigned long)mm;
829
830         cpu_bitmap += offsetof(struct mm_struct, cpu_bitmap);
831         cpumask_clear((struct cpumask *)cpu_bitmap);
832 }
833
834 /* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
835 static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
836 {
837         return (struct cpumask *)&mm->cpu_bitmap;
838 }
839
840 #ifdef CONFIG_LRU_GEN
841
842 struct lru_gen_mm_list {
843         /* mm_struct list for page table walkers */
844         struct list_head fifo;
845         /* protects the list above */
846         spinlock_t lock;
847 };
848
849 void lru_gen_add_mm(struct mm_struct *mm);
850 void lru_gen_del_mm(struct mm_struct *mm);
851 #ifdef CONFIG_MEMCG
852 void lru_gen_migrate_mm(struct mm_struct *mm);
853 #endif
854
855 static inline void lru_gen_init_mm(struct mm_struct *mm)
856 {
857         INIT_LIST_HEAD(&mm->lru_gen.list);
858         mm->lru_gen.bitmap = 0;
859 #ifdef CONFIG_MEMCG
860         mm->lru_gen.memcg = NULL;
861 #endif
862 }
863
864 static inline void lru_gen_use_mm(struct mm_struct *mm)
865 {
866         /*
867          * When the bitmap is set, page reclaim knows this mm_struct has been
868          * used since the last time it cleared the bitmap. So it might be worth
869          * walking the page tables of this mm_struct to clear the accessed bit.
870          */
871         WRITE_ONCE(mm->lru_gen.bitmap, -1);
872 }
873
874 #else /* !CONFIG_LRU_GEN */
875
876 static inline void lru_gen_add_mm(struct mm_struct *mm)
877 {
878 }
879
880 static inline void lru_gen_del_mm(struct mm_struct *mm)
881 {
882 }
883
884 #ifdef CONFIG_MEMCG
885 static inline void lru_gen_migrate_mm(struct mm_struct *mm)
886 {
887 }
888 #endif
889
890 static inline void lru_gen_init_mm(struct mm_struct *mm)
891 {
892 }
893
894 static inline void lru_gen_use_mm(struct mm_struct *mm)
895 {
896 }
897
898 #endif /* CONFIG_LRU_GEN */
899
900 struct vma_iterator {
901         struct ma_state mas;
902 };
903
904 #define VMA_ITERATOR(name, __mm, __addr)                                \
905         struct vma_iterator name = {                                    \
906                 .mas = {                                                \
907                         .tree = &(__mm)->mm_mt,                         \
908                         .index = __addr,                                \
909                         .node = MAS_START,                              \
910                 },                                                      \
911         }
912
913 static inline void vma_iter_init(struct vma_iterator *vmi,
914                 struct mm_struct *mm, unsigned long addr)
915 {
916         mas_init(&vmi->mas, &mm->mm_mt, addr);
917 }
918
919 #ifdef CONFIG_SCHED_MM_CID
920
921 enum mm_cid_state {
922         MM_CID_UNSET = -1U,             /* Unset state has lazy_put flag set. */
923         MM_CID_LAZY_PUT = (1U << 31),
924 };
925
926 static inline bool mm_cid_is_unset(int cid)
927 {
928         return cid == MM_CID_UNSET;
929 }
930
931 static inline bool mm_cid_is_lazy_put(int cid)
932 {
933         return !mm_cid_is_unset(cid) && (cid & MM_CID_LAZY_PUT);
934 }
935
936 static inline bool mm_cid_is_valid(int cid)
937 {
938         return !(cid & MM_CID_LAZY_PUT);
939 }
940
941 static inline int mm_cid_set_lazy_put(int cid)
942 {
943         return cid | MM_CID_LAZY_PUT;
944 }
945
946 static inline int mm_cid_clear_lazy_put(int cid)
947 {
948         return cid & ~MM_CID_LAZY_PUT;
949 }
950
951 /* Accessor for struct mm_struct's cidmask. */
952 static inline cpumask_t *mm_cidmask(struct mm_struct *mm)
953 {
954         unsigned long cid_bitmap = (unsigned long)mm;
955
956         cid_bitmap += offsetof(struct mm_struct, cpu_bitmap);
957         /* Skip cpu_bitmap */
958         cid_bitmap += cpumask_size();
959         return (struct cpumask *)cid_bitmap;
960 }
961
962 static inline void mm_init_cid(struct mm_struct *mm)
963 {
964         int i;
965
966         for_each_possible_cpu(i) {
967                 struct mm_cid *pcpu_cid = per_cpu_ptr(mm->pcpu_cid, i);
968
969                 pcpu_cid->cid = MM_CID_UNSET;
970                 pcpu_cid->time = 0;
971         }
972         cpumask_clear(mm_cidmask(mm));
973 }
974
975 static inline int mm_alloc_cid(struct mm_struct *mm)
976 {
977         mm->pcpu_cid = alloc_percpu(struct mm_cid);
978         if (!mm->pcpu_cid)
979                 return -ENOMEM;
980         mm_init_cid(mm);
981         return 0;
982 }
983
984 static inline void mm_destroy_cid(struct mm_struct *mm)
985 {
986         free_percpu(mm->pcpu_cid);
987         mm->pcpu_cid = NULL;
988 }
989
990 static inline unsigned int mm_cid_size(void)
991 {
992         return cpumask_size();
993 }
994 #else /* CONFIG_SCHED_MM_CID */
995 static inline void mm_init_cid(struct mm_struct *mm) { }
996 static inline int mm_alloc_cid(struct mm_struct *mm) { return 0; }
997 static inline void mm_destroy_cid(struct mm_struct *mm) { }
998 static inline unsigned int mm_cid_size(void)
999 {
1000         return 0;
1001 }
1002 #endif /* CONFIG_SCHED_MM_CID */
1003
1004 struct mmu_gather;
1005 extern void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm);
1006 extern void tlb_gather_mmu_fullmm(struct mmu_gather *tlb, struct mm_struct *mm);
1007 extern void tlb_finish_mmu(struct mmu_gather *tlb);
1008
1009 struct vm_fault;
1010
1011 /**
1012  * typedef vm_fault_t - Return type for page fault handlers.
1013  *
1014  * Page fault handlers return a bitmask of %VM_FAULT values.
1015  */
1016 typedef __bitwise unsigned int vm_fault_t;
1017
1018 /**
1019  * enum vm_fault_reason - Page fault handlers return a bitmask of
1020  * these values to tell the core VM what happened when handling the
1021  * fault. Used to decide whether a process gets delivered SIGBUS or
1022  * just gets major/minor fault counters bumped up.
1023  *
1024  * @VM_FAULT_OOM:               Out Of Memory
1025  * @VM_FAULT_SIGBUS:            Bad access
1026  * @VM_FAULT_MAJOR:             Page read from storage
1027  * @VM_FAULT_HWPOISON:          Hit poisoned small page
1028  * @VM_FAULT_HWPOISON_LARGE:    Hit poisoned large page. Index encoded
1029  *                              in upper bits
1030  * @VM_FAULT_SIGSEGV:           segmentation fault
1031  * @VM_FAULT_NOPAGE:            ->fault installed the pte, not return page
1032  * @VM_FAULT_LOCKED:            ->fault locked the returned page
1033  * @VM_FAULT_RETRY:             ->fault blocked, must retry
1034  * @VM_FAULT_FALLBACK:          huge page fault failed, fall back to small
1035  * @VM_FAULT_DONE_COW:          ->fault has fully handled COW
1036  * @VM_FAULT_NEEDDSYNC:         ->fault did not modify page tables and needs
1037  *                              fsync() to complete (for synchronous page faults
1038  *                              in DAX)
1039  * @VM_FAULT_COMPLETED:         ->fault completed, meanwhile mmap lock released
1040  * @VM_FAULT_HINDEX_MASK:       mask HINDEX value
1041  *
1042  */
1043 enum vm_fault_reason {
1044         VM_FAULT_OOM            = (__force vm_fault_t)0x000001,
1045         VM_FAULT_SIGBUS         = (__force vm_fault_t)0x000002,
1046         VM_FAULT_MAJOR          = (__force vm_fault_t)0x000004,
1047         VM_FAULT_HWPOISON       = (__force vm_fault_t)0x000010,
1048         VM_FAULT_HWPOISON_LARGE = (__force vm_fault_t)0x000020,
1049         VM_FAULT_SIGSEGV        = (__force vm_fault_t)0x000040,
1050         VM_FAULT_NOPAGE         = (__force vm_fault_t)0x000100,
1051         VM_FAULT_LOCKED         = (__force vm_fault_t)0x000200,
1052         VM_FAULT_RETRY          = (__force vm_fault_t)0x000400,
1053         VM_FAULT_FALLBACK       = (__force vm_fault_t)0x000800,
1054         VM_FAULT_DONE_COW       = (__force vm_fault_t)0x001000,
1055         VM_FAULT_NEEDDSYNC      = (__force vm_fault_t)0x002000,
1056         VM_FAULT_COMPLETED      = (__force vm_fault_t)0x004000,
1057         VM_FAULT_HINDEX_MASK    = (__force vm_fault_t)0x0f0000,
1058 };
1059
1060 /* Encode hstate index for a hwpoisoned large page */
1061 #define VM_FAULT_SET_HINDEX(x) ((__force vm_fault_t)((x) << 16))
1062 #define VM_FAULT_GET_HINDEX(x) (((__force unsigned int)(x) >> 16) & 0xf)
1063
1064 #define VM_FAULT_ERROR (VM_FAULT_OOM | VM_FAULT_SIGBUS |        \
1065                         VM_FAULT_SIGSEGV | VM_FAULT_HWPOISON |  \
1066                         VM_FAULT_HWPOISON_LARGE | VM_FAULT_FALLBACK)
1067
1068 #define VM_FAULT_RESULT_TRACE \
1069         { VM_FAULT_OOM,                 "OOM" },        \
1070         { VM_FAULT_SIGBUS,              "SIGBUS" },     \
1071         { VM_FAULT_MAJOR,               "MAJOR" },      \
1072         { VM_FAULT_HWPOISON,            "HWPOISON" },   \
1073         { VM_FAULT_HWPOISON_LARGE,      "HWPOISON_LARGE" },     \
1074         { VM_FAULT_SIGSEGV,             "SIGSEGV" },    \
1075         { VM_FAULT_NOPAGE,              "NOPAGE" },     \
1076         { VM_FAULT_LOCKED,              "LOCKED" },     \
1077         { VM_FAULT_RETRY,               "RETRY" },      \
1078         { VM_FAULT_FALLBACK,            "FALLBACK" },   \
1079         { VM_FAULT_DONE_COW,            "DONE_COW" },   \
1080         { VM_FAULT_NEEDDSYNC,           "NEEDDSYNC" }
1081
1082 struct vm_special_mapping {
1083         const char *name;       /* The name, e.g. "[vdso]". */
1084
1085         /*
1086          * If .fault is not provided, this points to a
1087          * NULL-terminated array of pages that back the special mapping.
1088          *
1089          * This must not be NULL unless .fault is provided.
1090          */
1091         struct page **pages;
1092
1093         /*
1094          * If non-NULL, then this is called to resolve page faults
1095          * on the special mapping.  If used, .pages is not checked.
1096          */
1097         vm_fault_t (*fault)(const struct vm_special_mapping *sm,
1098                                 struct vm_area_struct *vma,
1099                                 struct vm_fault *vmf);
1100
1101         int (*mremap)(const struct vm_special_mapping *sm,
1102                      struct vm_area_struct *new_vma);
1103 };
1104
1105 enum tlb_flush_reason {
1106         TLB_FLUSH_ON_TASK_SWITCH,
1107         TLB_REMOTE_SHOOTDOWN,
1108         TLB_LOCAL_SHOOTDOWN,
1109         TLB_LOCAL_MM_SHOOTDOWN,
1110         TLB_REMOTE_SEND_IPI,
1111         NR_TLB_FLUSH_REASONS,
1112 };
1113
1114  /*
1115   * A swap entry has to fit into a "unsigned long", as the entry is hidden
1116   * in the "index" field of the swapper address space.
1117   */
1118 typedef struct {
1119         unsigned long val;
1120 } swp_entry_t;
1121
1122 /**
1123  * enum fault_flag - Fault flag definitions.
1124  * @FAULT_FLAG_WRITE: Fault was a write fault.
1125  * @FAULT_FLAG_MKWRITE: Fault was mkwrite of existing PTE.
1126  * @FAULT_FLAG_ALLOW_RETRY: Allow to retry the fault if blocked.
1127  * @FAULT_FLAG_RETRY_NOWAIT: Don't drop mmap_lock and wait when retrying.
1128  * @FAULT_FLAG_KILLABLE: The fault task is in SIGKILL killable region.
1129  * @FAULT_FLAG_TRIED: The fault has been tried once.
1130  * @FAULT_FLAG_USER: The fault originated in userspace.
1131  * @FAULT_FLAG_REMOTE: The fault is not for current task/mm.
1132  * @FAULT_FLAG_INSTRUCTION: The fault was during an instruction fetch.
1133  * @FAULT_FLAG_INTERRUPTIBLE: The fault can be interrupted by non-fatal signals.
1134  * @FAULT_FLAG_UNSHARE: The fault is an unsharing request to break COW in a
1135  *                      COW mapping, making sure that an exclusive anon page is
1136  *                      mapped after the fault.
1137  * @FAULT_FLAG_ORIG_PTE_VALID: whether the fault has vmf->orig_pte cached.
1138  *                        We should only access orig_pte if this flag set.
1139  * @FAULT_FLAG_VMA_LOCK: The fault is handled under VMA lock.
1140  *
1141  * About @FAULT_FLAG_ALLOW_RETRY and @FAULT_FLAG_TRIED: we can specify
1142  * whether we would allow page faults to retry by specifying these two
1143  * fault flags correctly.  Currently there can be three legal combinations:
1144  *
1145  * (a) ALLOW_RETRY and !TRIED:  this means the page fault allows retry, and
1146  *                              this is the first try
1147  *
1148  * (b) ALLOW_RETRY and TRIED:   this means the page fault allows retry, and
1149  *                              we've already tried at least once
1150  *
1151  * (c) !ALLOW_RETRY and !TRIED: this means the page fault does not allow retry
1152  *
1153  * The unlisted combination (!ALLOW_RETRY && TRIED) is illegal and should never
1154  * be used.  Note that page faults can be allowed to retry for multiple times,
1155  * in which case we'll have an initial fault with flags (a) then later on
1156  * continuous faults with flags (b).  We should always try to detect pending
1157  * signals before a retry to make sure the continuous page faults can still be
1158  * interrupted if necessary.
1159  *
1160  * The combination FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE is illegal.
1161  * FAULT_FLAG_UNSHARE is ignored and treated like an ordinary read fault when
1162  * applied to mappings that are not COW mappings.
1163  */
1164 enum fault_flag {
1165         FAULT_FLAG_WRITE =              1 << 0,
1166         FAULT_FLAG_MKWRITE =            1 << 1,
1167         FAULT_FLAG_ALLOW_RETRY =        1 << 2,
1168         FAULT_FLAG_RETRY_NOWAIT =       1 << 3,
1169         FAULT_FLAG_KILLABLE =           1 << 4,
1170         FAULT_FLAG_TRIED =              1 << 5,
1171         FAULT_FLAG_USER =               1 << 6,
1172         FAULT_FLAG_REMOTE =             1 << 7,
1173         FAULT_FLAG_INSTRUCTION =        1 << 8,
1174         FAULT_FLAG_INTERRUPTIBLE =      1 << 9,
1175         FAULT_FLAG_UNSHARE =            1 << 10,
1176         FAULT_FLAG_ORIG_PTE_VALID =     1 << 11,
1177         FAULT_FLAG_VMA_LOCK =           1 << 12,
1178 };
1179
1180 typedef unsigned int __bitwise zap_flags_t;
1181
1182 /*
1183  * FOLL_PIN and FOLL_LONGTERM may be used in various combinations with each
1184  * other. Here is what they mean, and how to use them:
1185  *
1186  *
1187  * FIXME: For pages which are part of a filesystem, mappings are subject to the
1188  * lifetime enforced by the filesystem and we need guarantees that longterm
1189  * users like RDMA and V4L2 only establish mappings which coordinate usage with
1190  * the filesystem.  Ideas for this coordination include revoking the longterm
1191  * pin, delaying writeback, bounce buffer page writeback, etc.  As FS DAX was
1192  * added after the problem with filesystems was found FS DAX VMAs are
1193  * specifically failed.  Filesystem pages are still subject to bugs and use of
1194  * FOLL_LONGTERM should be avoided on those pages.
1195  *
1196  * In the CMA case: long term pins in a CMA region would unnecessarily fragment
1197  * that region.  And so, CMA attempts to migrate the page before pinning, when
1198  * FOLL_LONGTERM is specified.
1199  *
1200  * FOLL_PIN indicates that a special kind of tracking (not just page->_refcount,
1201  * but an additional pin counting system) will be invoked. This is intended for
1202  * anything that gets a page reference and then touches page data (for example,
1203  * Direct IO). This lets the filesystem know that some non-file-system entity is
1204  * potentially changing the pages' data. In contrast to FOLL_GET (whose pages
1205  * are released via put_page()), FOLL_PIN pages must be released, ultimately, by
1206  * a call to unpin_user_page().
1207  *
1208  * FOLL_PIN is similar to FOLL_GET: both of these pin pages. They use different
1209  * and separate refcounting mechanisms, however, and that means that each has
1210  * its own acquire and release mechanisms:
1211  *
1212  *     FOLL_GET: get_user_pages*() to acquire, and put_page() to release.
1213  *
1214  *     FOLL_PIN: pin_user_pages*() to acquire, and unpin_user_pages to release.
1215  *
1216  * FOLL_PIN and FOLL_GET are mutually exclusive for a given function call.
1217  * (The underlying pages may experience both FOLL_GET-based and FOLL_PIN-based
1218  * calls applied to them, and that's perfectly OK. This is a constraint on the
1219  * callers, not on the pages.)
1220  *
1221  * FOLL_PIN should be set internally by the pin_user_pages*() APIs, never
1222  * directly by the caller. That's in order to help avoid mismatches when
1223  * releasing pages: get_user_pages*() pages must be released via put_page(),
1224  * while pin_user_pages*() pages must be released via unpin_user_page().
1225  *
1226  * Please see Documentation/core-api/pin_user_pages.rst for more information.
1227  */
1228
1229 enum {
1230         /* check pte is writable */
1231         FOLL_WRITE = 1 << 0,
1232         /* do get_page on page */
1233         FOLL_GET = 1 << 1,
1234         /* give error on hole if it would be zero */
1235         FOLL_DUMP = 1 << 2,
1236         /* get_user_pages read/write w/o permission */
1237         FOLL_FORCE = 1 << 3,
1238         /*
1239          * if a disk transfer is needed, start the IO and return without waiting
1240          * upon it
1241          */
1242         FOLL_NOWAIT = 1 << 4,
1243         /* do not fault in pages */
1244         FOLL_NOFAULT = 1 << 5,
1245         /* check page is hwpoisoned */
1246         FOLL_HWPOISON = 1 << 6,
1247         /* don't do file mappings */
1248         FOLL_ANON = 1 << 7,
1249         /*
1250          * FOLL_LONGTERM indicates that the page will be held for an indefinite
1251          * time period _often_ under userspace control.  This is in contrast to
1252          * iov_iter_get_pages(), whose usages are transient.
1253          */
1254         FOLL_LONGTERM = 1 << 8,
1255         /* split huge pmd before returning */
1256         FOLL_SPLIT_PMD = 1 << 9,
1257         /* allow returning PCI P2PDMA pages */
1258         FOLL_PCI_P2PDMA = 1 << 10,
1259         /* allow interrupts from generic signals */
1260         FOLL_INTERRUPTIBLE = 1 << 11,
1261
1262         /* See also internal only FOLL flags in mm/internal.h */
1263 };
1264
1265 #endif /* _LINUX_MM_TYPES_H */