mm.h 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. #ifndef _LINUX_MM_H
  2. #define _LINUX_MM_H
  3. #include <linux/errno.h>
  4. #ifdef __KERNEL__
  5. #include <linux/mmdebug.h>
  6. #include <linux/gfp.h>
  7. #include <linux/bug.h>
  8. #include <linux/list.h>
  9. #include <linux/mmzone.h>
  10. #include <linux/rbtree.h>
  11. #include <linux/atomic.h>
  12. #include <linux/debug_locks.h>
  13. #include <linux/mm_types.h>
  14. #include <linux/range.h>
  15. #include <linux/pfn.h>
  16. #include <linux/percpu-refcount.h>
  17. #include <linux/bit_spinlock.h>
  18. #include <linux/shrinker.h>
  19. #include <linux/resource.h>
  20. #include <linux/page_ext.h>
  21. #include <linux/err.h>
  22. #include <linux/page_ref.h>
  23. struct mempolicy;
  24. struct anon_vma;
  25. struct anon_vma_chain;
  26. struct file_ra_state;
  27. struct user_struct;
  28. struct writeback_control;
  29. struct bdi_writeback;
  30. #ifndef CONFIG_NEED_MULTIPLE_NODES /* Don't use mapnrs, do it properly */
  31. extern unsigned long max_mapnr;
  32. static inline void set_max_mapnr(unsigned long limit)
  33. {
  34. max_mapnr = limit;
  35. }
  36. #else
  37. static inline void set_max_mapnr(unsigned long limit) { }
  38. #endif
  39. extern unsigned long totalram_pages;
  40. extern void * high_memory;
  41. extern int page_cluster;
  42. #ifdef CONFIG_SYSCTL
  43. extern int sysctl_legacy_va_layout;
  44. #else
  45. #define sysctl_legacy_va_layout 0
  46. #endif
  47. #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
  48. extern const int mmap_rnd_bits_min;
  49. extern const int mmap_rnd_bits_max;
  50. extern int mmap_rnd_bits __read_mostly;
  51. #endif
  52. #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
  53. extern const int mmap_rnd_compat_bits_min;
  54. extern const int mmap_rnd_compat_bits_max;
  55. extern int mmap_rnd_compat_bits __read_mostly;
  56. #endif
  57. #include <asm/page.h>
  58. #include <asm/pgtable.h>
  59. #include <asm/processor.h>
  60. #ifndef __pa_symbol
  61. #define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
  62. #endif
  63. #ifndef page_to_virt
  64. #define page_to_virt(x) __va(PFN_PHYS(page_to_pfn(x)))
  65. #endif
  66. #ifndef lm_alias
  67. #define lm_alias(x) __va(__pa_symbol(x))
  68. #endif
  69. /*
  70. * To prevent common memory management code establishing
  71. * a zero page mapping on a read fault.
  72. * This macro should be defined within <asm/pgtable.h>.
  73. * s390 does this to prevent multiplexing of hardware bits
  74. * related to the physical page in case of virtualization.
  75. */
  76. #ifndef mm_forbids_zeropage
  77. #define mm_forbids_zeropage(X) (0)
  78. #endif
  79. /*
  80. * Default maximum number of active map areas, this limits the number of vmas
  81. * per mm struct. Users can overwrite this number by sysctl but there is a
  82. * problem.
  83. *
  84. * When a program's coredump is generated as ELF format, a section is created
  85. * per a vma. In ELF, the number of sections is represented in unsigned short.
  86. * This means the number of sections should be smaller than 65535 at coredump.
  87. * Because the kernel adds some informative sections to a image of program at
  88. * generating coredump, we need some margin. The number of extra sections is
  89. * 1-3 now and depends on arch. We use "5" as safe margin, here.
  90. *
  91. * ELF extended numbering allows more than 65535 sections, so 16-bit bound is
  92. * not a hard limit any more. Although some userspace tools can be surprised by
  93. * that.
  94. */
  95. #define MAPCOUNT_ELF_CORE_MARGIN (5)
  96. #define DEFAULT_MAX_MAP_COUNT (USHRT_MAX - MAPCOUNT_ELF_CORE_MARGIN)
  97. extern int sysctl_max_map_count;
  98. extern unsigned long sysctl_user_reserve_kbytes;
  99. extern unsigned long sysctl_admin_reserve_kbytes;
  100. extern int sysctl_overcommit_memory;
  101. extern int sysctl_overcommit_ratio;
  102. extern unsigned long sysctl_overcommit_kbytes;
  103. extern int overcommit_ratio_handler(struct ctl_table *, int, void __user *,
  104. size_t *, loff_t *);
  105. extern int overcommit_kbytes_handler(struct ctl_table *, int, void __user *,
  106. size_t *, loff_t *);
  107. #define nth_page(page,n) pfn_to_page(page_to_pfn((page)) + (n))
  108. /* to align the pointer to the (next) page boundary */
  109. #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
  110. /* test whether an address (unsigned long or pointer) is aligned to PAGE_SIZE */
  111. #define PAGE_ALIGNED(addr) IS_ALIGNED((unsigned long)(addr), PAGE_SIZE)
  112. /*
  113. * Linux kernel virtual memory manager primitives.
  114. * The idea being to have a "virtual" mm in the same way
  115. * we have a virtual fs - giving a cleaner interface to the
  116. * mm details, and allowing different kinds of memory mappings
  117. * (from shared memory to executable loading to arbitrary
  118. * mmap() functions).
  119. */
  120. extern struct kmem_cache *vm_area_cachep;
  121. #ifndef CONFIG_MMU
  122. extern struct rb_root nommu_region_tree;
  123. extern struct rw_semaphore nommu_region_sem;
  124. extern unsigned int kobjsize(const void *objp);
  125. #endif
  126. /*
  127. * vm_flags in vm_area_struct, see mm_types.h.
  128. * When changing, update also include/trace/events/mmflags.h
  129. */
  130. #define VM_NONE 0x00000000
  131. #define VM_READ 0x00000001 /* currently active flags */
  132. #define VM_WRITE 0x00000002
  133. #define VM_EXEC 0x00000004
  134. #define VM_SHARED 0x00000008
  135. /* mprotect() hardcodes VM_MAYREAD >> 4 == VM_READ, and so for r/w/x bits. */
  136. #define VM_MAYREAD 0x00000010 /* limits for mprotect() etc */
  137. #define VM_MAYWRITE 0x00000020
  138. #define VM_MAYEXEC 0x00000040
  139. #define VM_MAYSHARE 0x00000080
  140. #define VM_GROWSDOWN 0x00000100 /* general info on the segment */
  141. #define VM_UFFD_MISSING 0x00000200 /* missing pages tracking */
  142. #define VM_PFNMAP 0x00000400 /* Page-ranges managed without "struct page", just pure PFN */
  143. #define VM_DENYWRITE 0x00000800 /* ETXTBSY on write attempts.. */
  144. #define VM_UFFD_WP 0x00001000 /* wrprotect pages tracking */
  145. #define VM_LOCKED 0x00002000
  146. #define VM_IO 0x00004000 /* Memory mapped I/O or similar */
  147. /* Used by sys_madvise() */
  148. #define VM_SEQ_READ 0x00008000 /* App will access data sequentially */
  149. #define VM_RAND_READ 0x00010000 /* App will not benefit from clustered reads */
  150. #define VM_DONTCOPY 0x00020000 /* Do not copy this vma on fork */
  151. #define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */
  152. #define VM_LOCKONFAULT 0x00080000 /* Lock the pages covered when they are faulted in */
  153. #define VM_ACCOUNT 0x00100000 /* Is a VM accounted object */
  154. #define VM_NORESERVE 0x00200000 /* should the VM suppress accounting */
  155. #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */
  156. #define VM_ARCH_1 0x01000000 /* Architecture-specific flag */
  157. #define VM_ARCH_2 0x02000000
  158. #define VM_DONTDUMP 0x04000000 /* Do not include in the core dump */
  159. #ifdef CONFIG_MEM_SOFT_DIRTY
  160. # define VM_SOFTDIRTY 0x08000000 /* Not soft dirty clean area */
  161. #else
  162. # define VM_SOFTDIRTY 0
  163. #endif
  164. #define VM_MIXEDMAP 0x10000000 /* Can contain "struct page" and pure PFN pages */
  165. #define VM_HUGEPAGE 0x20000000 /* MADV_HUGEPAGE marked this vma */
  166. #define VM_NOHUGEPAGE 0x40000000 /* MADV_NOHUGEPAGE marked this vma */
  167. #define VM_MERGEABLE 0x80000000 /* KSM may merge identical pages */
  168. #ifdef CONFIG_ARCH_USES_HIGH_VMA_FLAGS
  169. #define VM_HIGH_ARCH_BIT_0 32 /* bit only usable on 64-bit architectures */
  170. #define VM_HIGH_ARCH_BIT_1 33 /* bit only usable on 64-bit architectures */
  171. #define VM_HIGH_ARCH_BIT_2 34 /* bit only usable on 64-bit architectures */
  172. #define VM_HIGH_ARCH_BIT_3 35 /* bit only usable on 64-bit architectures */
  173. #define VM_HIGH_ARCH_0 BIT(VM_HIGH_ARCH_BIT_0)
  174. #define VM_HIGH_ARCH_1 BIT(VM_HIGH_ARCH_BIT_1)
  175. #define VM_HIGH_ARCH_2 BIT(VM_HIGH_ARCH_BIT_2)
  176. #define VM_HIGH_ARCH_3 BIT(VM_HIGH_ARCH_BIT_3)
  177. #endif /* CONFIG_ARCH_USES_HIGH_VMA_FLAGS */
  178. #if defined(CONFIG_X86)
  179. # define VM_PAT VM_ARCH_1 /* PAT reserves whole VMA at once (x86) */
  180. #if defined (CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS)
  181. # define VM_PKEY_SHIFT VM_HIGH_ARCH_BIT_0
  182. # define VM_PKEY_BIT0 VM_HIGH_ARCH_0 /* A protection key is a 4-bit value */
  183. # define VM_PKEY_BIT1 VM_HIGH_ARCH_1
  184. # define VM_PKEY_BIT2 VM_HIGH_ARCH_2
  185. # define VM_PKEY_BIT3 VM_HIGH_ARCH_3
  186. #endif
  187. #elif defined(CONFIG_PPC)
  188. # define VM_SAO VM_ARCH_1 /* Strong Access Ordering (powerpc) */
  189. #elif defined(CONFIG_PARISC)
  190. # define VM_GROWSUP VM_ARCH_1
  191. #elif defined(CONFIG_METAG)
  192. # define VM_GROWSUP VM_ARCH_1
  193. #elif defined(CONFIG_IA64)
  194. # define VM_GROWSUP VM_ARCH_1
  195. #elif !defined(CONFIG_MMU)
  196. # define VM_MAPPED_COPY VM_ARCH_1 /* T if mapped copy of data (nommu mmap) */
  197. #endif
  198. #if defined(CONFIG_X86)
  199. /* MPX specific bounds table or bounds directory */
  200. # define VM_MPX VM_ARCH_2
  201. #endif
  202. #ifndef VM_GROWSUP
  203. # define VM_GROWSUP VM_NONE
  204. #endif
  205. /* Bits set in the VMA until the stack is in its final location */
  206. #define VM_STACK_INCOMPLETE_SETUP (VM_RAND_READ | VM_SEQ_READ)
  207. #ifndef VM_STACK_DEFAULT_FLAGS /* arch can override this */
  208. #define VM_STACK_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS
  209. #endif
  210. #ifdef CONFIG_STACK_GROWSUP
  211. #define VM_STACK VM_GROWSUP
  212. #else
  213. #define VM_STACK VM_GROWSDOWN
  214. #endif
  215. #define VM_STACK_FLAGS (VM_STACK | VM_STACK_DEFAULT_FLAGS | VM_ACCOUNT)
  216. /*
  217. * Special vmas that are non-mergable, non-mlock()able.
  218. * Note: mm/huge_memory.c VM_NO_THP depends on this definition.
  219. */
  220. #define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_PFNMAP | VM_MIXEDMAP)
  221. /* This mask defines which mm->def_flags a process can inherit its parent */
  222. #define VM_INIT_DEF_MASK VM_NOHUGEPAGE
  223. /* This mask is used to clear all the VMA flags used by mlock */
  224. #define VM_LOCKED_CLEAR_MASK (~(VM_LOCKED | VM_LOCKONFAULT))
  225. /*
  226. * mapping from the currently active vm_flags protection bits (the
  227. * low four bits) to a page protection mask..
  228. */
  229. extern pgprot_t protection_map[16];
  230. #define FAULT_FLAG_WRITE 0x01 /* Fault was a write access */
  231. #define FAULT_FLAG_MKWRITE 0x02 /* Fault was mkwrite of existing pte */
  232. #define FAULT_FLAG_ALLOW_RETRY 0x04 /* Retry fault if blocking */
  233. #define FAULT_FLAG_RETRY_NOWAIT 0x08 /* Don't drop mmap_sem and wait when retrying */
  234. #define FAULT_FLAG_KILLABLE 0x10 /* The fault task is in SIGKILL killable region */
  235. #define FAULT_FLAG_TRIED 0x20 /* Second try */
  236. #define FAULT_FLAG_USER 0x40 /* The fault originated in userspace */
  237. #define FAULT_FLAG_REMOTE 0x80 /* faulting for non current tsk/mm */
  238. #define FAULT_FLAG_INSTRUCTION 0x100 /* The fault was during an instruction fetch */
  239. #define FAULT_FLAG_TRACE \
  240. { FAULT_FLAG_WRITE, "WRITE" }, \
  241. { FAULT_FLAG_MKWRITE, "MKWRITE" }, \
  242. { FAULT_FLAG_ALLOW_RETRY, "ALLOW_RETRY" }, \
  243. { FAULT_FLAG_RETRY_NOWAIT, "RETRY_NOWAIT" }, \
  244. { FAULT_FLAG_KILLABLE, "KILLABLE" }, \
  245. { FAULT_FLAG_TRIED, "TRIED" }, \
  246. { FAULT_FLAG_USER, "USER" }, \
  247. { FAULT_FLAG_REMOTE, "REMOTE" }, \
  248. { FAULT_FLAG_INSTRUCTION, "INSTRUCTION" }
  249. /*
  250. * vm_fault is filled by the the pagefault handler and passed to the vma's
  251. * ->fault function. The vma's ->fault is responsible for returning a bitmask
  252. * of VM_FAULT_xxx flags that give details about how the fault was handled.
  253. *
  254. * MM layer fills up gfp_mask for page allocations but fault handler might
  255. * alter it if its implementation requires a different allocation context.
  256. *
  257. * pgoff should be used in favour of virtual_address, if possible.
  258. */
  259. struct vm_fault {
  260. struct vm_area_struct *vma; /* Target VMA */
  261. unsigned int flags; /* FAULT_FLAG_xxx flags */
  262. gfp_t gfp_mask; /* gfp mask to be used for allocations */
  263. pgoff_t pgoff; /* Logical page offset based on vma */
  264. unsigned long address; /* Faulting virtual address */
  265. pmd_t *pmd; /* Pointer to pmd entry matching
  266. * the 'address' */
  267. pte_t orig_pte; /* Value of PTE at the time of fault */
  268. struct page *cow_page; /* Page handler may use for COW fault */
  269. struct mem_cgroup *memcg; /* Cgroup cow_page belongs to */
  270. struct page *page; /* ->fault handlers should return a
  271. * page here, unless VM_FAULT_NOPAGE
  272. * is set (which is also implied by
  273. * VM_FAULT_ERROR).
  274. */
  275. /* These three entries are valid only while holding ptl lock */
  276. pte_t *pte; /* Pointer to pte entry matching
  277. * the 'address'. NULL if the page
  278. * table hasn't been allocated.
  279. */
  280. spinlock_t *ptl; /* Page table lock.
  281. * Protects pte page table if 'pte'
  282. * is not NULL, otherwise pmd.
  283. */
  284. pgtable_t prealloc_pte; /* Pre-allocated pte page table.
  285. * vm_ops->map_pages() calls
  286. * alloc_set_pte() from atomic context.
  287. * do_fault_around() pre-allocates
  288. * page table to avoid allocation from
  289. * atomic context.
  290. */
  291. };
  292. /*
  293. * These are the virtual MM functions - opening of an area, closing and
  294. * unmapping it (needed to keep files on disk up-to-date etc), pointer
  295. * to the functions called when a no-page or a wp-page exception occurs.
  296. */
  297. struct vm_operations_struct {
  298. void (*open)(struct vm_area_struct * area);
  299. void (*close)(struct vm_area_struct * area);
  300. int (*mremap)(struct vm_area_struct * area);
  301. int (*fault)(struct vm_fault *vmf);
  302. int (*pmd_fault)(struct vm_fault *vmf);
  303. void (*map_pages)(struct vm_fault *vmf,
  304. pgoff_t start_pgoff, pgoff_t end_pgoff);
  305. /* notification that a previously read-only page is about to become
  306. * writable, if an error is returned it will cause a SIGBUS */
  307. int (*page_mkwrite)(struct vm_fault *vmf);
  308. /* same as page_mkwrite when using VM_PFNMAP|VM_MIXEDMAP */
  309. int (*pfn_mkwrite)(struct vm_fault *vmf);
  310. /* called by access_process_vm when get_user_pages() fails, typically
  311. * for use by special VMAs that can switch between memory and hardware
  312. */
  313. int (*access)(struct vm_area_struct *vma, unsigned long addr,
  314. void *buf, int len, int write);
  315. /* Called by the /proc/PID/maps code to ask the vma whether it
  316. * has a special name. Returning non-NULL will also cause this
  317. * vma to be dumped unconditionally. */
  318. const char *(*name)(struct vm_area_struct *vma);
  319. #ifdef CONFIG_NUMA
  320. /*
  321. * set_policy() op must add a reference to any non-NULL @new mempolicy
  322. * to hold the policy upon return. Caller should pass NULL @new to
  323. * remove a policy and fall back to surrounding context--i.e. do not
  324. * install a MPOL_DEFAULT policy, nor the task or system default
  325. * mempolicy.
  326. */
  327. int (*set_policy)(struct vm_area_struct *vma, struct mempolicy *new);
  328. /*
  329. * get_policy() op must add reference [mpol_get()] to any policy at
  330. * (vma,addr) marked as MPOL_SHARED. The shared policy infrastructure
  331. * in mm/mempolicy.c will do this automatically.
  332. * get_policy() must NOT add a ref if the policy at (vma,addr) is not
  333. * marked as MPOL_SHARED. vma policies are protected by the mmap_sem.
  334. * If no [shared/vma] mempolicy exists at the addr, get_policy() op
  335. * must return NULL--i.e., do not "fallback" to task or system default
  336. * policy.
  337. */
  338. struct mempolicy *(*get_policy)(struct vm_area_struct *vma,
  339. unsigned long addr);
  340. #endif
  341. /*
  342. * Called by vm_normal_page() for special PTEs to find the
  343. * page for @addr. This is useful if the default behavior
  344. * (using pte_page()) would not find the correct page.
  345. */
  346. struct page *(*find_special_page)(struct vm_area_struct *vma,
  347. unsigned long addr);
  348. };
  349. struct mmu_gather;
  350. struct inode;
  351. #define page_private(page) ((page)->private)
  352. #define set_page_private(page, v) ((page)->private = (v))
  353. #if !defined(__HAVE_ARCH_PTE_DEVMAP) || !defined(CONFIG_TRANSPARENT_HUGEPAGE)
  354. static inline int pmd_devmap(pmd_t pmd)
  355. {
  356. return 0;
  357. }
  358. #endif
  359. /*
  360. * FIXME: take this include out, include page-flags.h in
  361. * files which need it (119 of them)
  362. */
  363. #include <linux/page-flags.h>
  364. #include <linux/huge_mm.h>
  365. /*
  366. * Methods to modify the page usage count.
  367. *
  368. * What counts for a page usage:
  369. * - cache mapping (page->mapping)
  370. * - private data (page->private)
  371. * - page mapped in a task's page tables, each mapping
  372. * is counted separately
  373. *
  374. * Also, many kernel routines increase the page count before a critical
  375. * routine so they can be sure the page doesn't go away from under them.
  376. */
  377. /*
  378. * Drop a ref, return true if the refcount fell to zero (the page has no users)
  379. */
  380. static inline int put_page_testzero(struct page *page)
  381. {
  382. VM_BUG_ON_PAGE(page_ref_count(page) == 0, page);
  383. return page_ref_dec_and_test(page);
  384. }
  385. /*
  386. * Try to grab a ref unless the page has a refcount of zero, return false if
  387. * that is the case.
  388. * This can be called when MMU is off so it must not access
  389. * any of the virtual mappings.
  390. */
  391. static inline int get_page_unless_zero(struct page *page)
  392. {
  393. return page_ref_add_unless(page, 1, 0);
  394. }
  395. extern int page_is_ram(unsigned long pfn);
  396. enum {
  397. REGION_INTERSECTS,
  398. REGION_DISJOINT,
  399. REGION_MIXED,
  400. };
  401. int region_intersects(resource_size_t offset, size_t size, unsigned long flags,
  402. unsigned long desc);
  403. /* Support for virtually mapped pages */
  404. struct page *vmalloc_to_page(const void *addr);
  405. unsigned long vmalloc_to_pfn(const void *addr);
  406. /*
  407. * Determine if an address is within the vmalloc range
  408. *
  409. * On nommu, vmalloc/vfree wrap through kmalloc/kfree directly, so there
  410. * is no special casing required.
  411. */
  412. static inline bool is_vmalloc_addr(const void *x)
  413. {
  414. #ifdef CONFIG_MMU
  415. unsigned long addr = (unsigned long)x;
  416. return addr >= VMALLOC_START && addr < VMALLOC_END;
  417. #else
  418. return false;
  419. #endif
  420. }
  421. #ifdef CONFIG_MMU
  422. extern int is_vmalloc_or_module_addr(const void *x);
  423. #else
  424. static inline int is_vmalloc_or_module_addr(const void *x)
  425. {
  426. return 0;
  427. }
  428. #endif
  429. extern void kvfree(const void *addr);
  430. static inline atomic_t *compound_mapcount_ptr(struct page *page)
  431. {
  432. return &page[1].compound_mapcount;
  433. }
  434. static inline int compound_mapcount(struct page *page)
  435. {
  436. VM_BUG_ON_PAGE(!PageCompound(page), page);
  437. page = compound_head(page);
  438. return atomic_read(compound_mapcount_ptr(page)) + 1;
  439. }
  440. /*
  441. * The atomic page->_mapcount, starts from -1: so that transitions
  442. * both from it and to it can be tracked, using atomic_inc_and_test
  443. * and atomic_add_negative(-1).
  444. */
  445. static inline void page_mapcount_reset(struct page *page)
  446. {
  447. atomic_set(&(page)->_mapcount, -1);
  448. }
  449. int __page_mapcount(struct page *page);
  450. static inline int page_mapcount(struct page *page)
  451. {
  452. VM_BUG_ON_PAGE(PageSlab(page), page);
  453. if (unlikely(PageCompound(page)))
  454. return __page_mapcount(page);
  455. return atomic_read(&page->_mapcount) + 1;
  456. }
  457. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  458. int total_mapcount(struct page *page);
  459. int page_trans_huge_mapcount(struct page *page, int *total_mapcount);
  460. #else
  461. static inline int total_mapcount(struct page *page)
  462. {
  463. return page_mapcount(page);
  464. }
  465. static inline int page_trans_huge_mapcount(struct page *page,
  466. int *total_mapcount)
  467. {
  468. int mapcount = page_mapcount(page);
  469. if (total_mapcount)
  470. *total_mapcount = mapcount;
  471. return mapcount;
  472. }
  473. #endif
  474. static inline struct page *virt_to_head_page(const void *x)
  475. {
  476. struct page *page = virt_to_page(x);
  477. return compound_head(page);
  478. }
  479. void __put_page(struct page *page);
  480. void put_pages_list(struct list_head *pages);
  481. void split_page(struct page *page, unsigned int order);
  482. /*
  483. * Compound pages have a destructor function. Provide a
  484. * prototype for that function and accessor functions.
  485. * These are _only_ valid on the head of a compound page.
  486. */
  487. typedef void compound_page_dtor(struct page *);
  488. /* Keep the enum in sync with compound_page_dtors array in mm/page_alloc.c */
  489. enum compound_dtor_id {
  490. NULL_COMPOUND_DTOR,
  491. COMPOUND_PAGE_DTOR,
  492. #ifdef CONFIG_HUGETLB_PAGE
  493. HUGETLB_PAGE_DTOR,
  494. #endif
  495. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  496. TRANSHUGE_PAGE_DTOR,
  497. #endif
  498. NR_COMPOUND_DTORS,
  499. };
  500. extern compound_page_dtor * const compound_page_dtors[];
  501. static inline void set_compound_page_dtor(struct page *page,
  502. enum compound_dtor_id compound_dtor)
  503. {
  504. VM_BUG_ON_PAGE(compound_dtor >= NR_COMPOUND_DTORS, page);
  505. page[1].compound_dtor = compound_dtor;
  506. }
  507. static inline compound_page_dtor *get_compound_page_dtor(struct page *page)
  508. {
  509. VM_BUG_ON_PAGE(page[1].compound_dtor >= NR_COMPOUND_DTORS, page);
  510. return compound_page_dtors[page[1].compound_dtor];
  511. }
  512. static inline unsigned int compound_order(struct page *page)
  513. {
  514. if (!PageHead(page))
  515. return 0;
  516. return page[1].compound_order;
  517. }
  518. static inline void set_compound_order(struct page *page, unsigned int order)
  519. {
  520. page[1].compound_order = order;
  521. }
  522. void free_compound_page(struct page *page);
  523. #ifdef CONFIG_MMU
  524. /*
  525. * Do pte_mkwrite, but only if the vma says VM_WRITE. We do this when
  526. * servicing faults for write access. In the normal case, do always want
  527. * pte_mkwrite. But get_user_pages can cause write faults for mappings
  528. * that do not have writing enabled, when used by access_process_vm.
  529. */
  530. static inline pte_t maybe_mkwrite(pte_t pte, struct vm_area_struct *vma)
  531. {
  532. if (likely(vma->vm_flags & VM_WRITE))
  533. pte = pte_mkwrite(pte);
  534. return pte;
  535. }
  536. int alloc_set_pte(struct vm_fault *vmf, struct mem_cgroup *memcg,
  537. struct page *page);
  538. int finish_fault(struct vm_fault *vmf);
  539. int finish_mkwrite_fault(struct vm_fault *vmf);
  540. #endif
  541. /*
  542. * Multiple processes may "see" the same page. E.g. for untouched
  543. * mappings of /dev/null, all processes see the same page full of
  544. * zeroes, and text pages of executables and shared libraries have
  545. * only one copy in memory, at most, normally.
  546. *
  547. * For the non-reserved pages, page_count(page) denotes a reference count.
  548. * page_count() == 0 means the page is free. page->lru is then used for
  549. * freelist management in the buddy allocator.
  550. * page_count() > 0 means the page has been allocated.
  551. *
  552. * Pages are allocated by the slab allocator in order to provide memory
  553. * to kmalloc and kmem_cache_alloc. In this case, the management of the
  554. * page, and the fields in 'struct page' are the responsibility of mm/slab.c
  555. * unless a particular usage is carefully commented. (the responsibility of
  556. * freeing the kmalloc memory is the caller's, of course).
  557. *
  558. * A page may be used by anyone else who does a __get_free_page().
  559. * In this case, page_count still tracks the references, and should only
  560. * be used through the normal accessor functions. The top bits of page->flags
  561. * and page->virtual store page management information, but all other fields
  562. * are unused and could be used privately, carefully. The management of this
  563. * page is the responsibility of the one who allocated it, and those who have
  564. * subsequently been given references to it.
  565. *
  566. * The other pages (we may call them "pagecache pages") are completely
  567. * managed by the Linux memory manager: I/O, buffers, swapping etc.
  568. * The following discussion applies only to them.
  569. *
  570. * A pagecache page contains an opaque `private' member, which belongs to the
  571. * page's address_space. Usually, this is the address of a circular list of
  572. * the page's disk buffers. PG_private must be set to tell the VM to call
  573. * into the filesystem to release these pages.
  574. *
  575. * A page may belong to an inode's memory mapping. In this case, page->mapping
  576. * is the pointer to the inode, and page->index is the file offset of the page,
  577. * in units of PAGE_SIZE.
  578. *
  579. * If pagecache pages are not associated with an inode, they are said to be
  580. * anonymous pages. These may become associated with the swapcache, and in that
  581. * case PG_swapcache is set, and page->private is an offset into the swapcache.
  582. *
  583. * In either case (swapcache or inode backed), the pagecache itself holds one
  584. * reference to the page. Setting PG_private should also increment the
  585. * refcount. The each user mapping also has a reference to the page.
  586. *
  587. * The pagecache pages are stored in a per-mapping radix tree, which is
  588. * rooted at mapping->page_tree, and indexed by offset.
  589. * Where 2.4 and early 2.6 kernels kept dirty/clean pages in per-address_space
  590. * lists, we instead now tag pages as dirty/writeback in the radix tree.
  591. *
  592. * All pagecache pages may be subject to I/O:
  593. * - inode pages may need to be read from disk,
  594. * - inode pages which have been modified and are MAP_SHARED may need
  595. * to be written back to the inode on disk,
  596. * - anonymous pages (including MAP_PRIVATE file mappings) which have been
  597. * modified may need to be swapped out to swap space and (later) to be read
  598. * back into memory.
  599. */
  600. /*
  601. * The zone field is never updated after free_area_init_core()
  602. * sets it, so none of the operations on it need to be atomic.
  603. */
  604. /* Page flags: | [SECTION] | [NODE] | ZONE | [LAST_CPUPID] | ... | FLAGS | */
  605. #define SECTIONS_PGOFF ((sizeof(unsigned long)*8) - SECTIONS_WIDTH)
  606. #define NODES_PGOFF (SECTIONS_PGOFF - NODES_WIDTH)
  607. #define ZONES_PGOFF (NODES_PGOFF - ZONES_WIDTH)
  608. #define LAST_CPUPID_PGOFF (ZONES_PGOFF - LAST_CPUPID_WIDTH)
  609. /*
  610. * Define the bit shifts to access each section. For non-existent
  611. * sections we define the shift as 0; that plus a 0 mask ensures
  612. * the compiler will optimise away reference to them.
  613. */
  614. #define SECTIONS_PGSHIFT (SECTIONS_PGOFF * (SECTIONS_WIDTH != 0))
  615. #define NODES_PGSHIFT (NODES_PGOFF * (NODES_WIDTH != 0))
  616. #define ZONES_PGSHIFT (ZONES_PGOFF * (ZONES_WIDTH != 0))
  617. #define LAST_CPUPID_PGSHIFT (LAST_CPUPID_PGOFF * (LAST_CPUPID_WIDTH != 0))
  618. /* NODE:ZONE or SECTION:ZONE is used to ID a zone for the buddy allocator */
  619. #ifdef NODE_NOT_IN_PAGE_FLAGS
  620. #define ZONEID_SHIFT (SECTIONS_SHIFT + ZONES_SHIFT)
  621. #define ZONEID_PGOFF ((SECTIONS_PGOFF < ZONES_PGOFF)? \
  622. SECTIONS_PGOFF : ZONES_PGOFF)
  623. #else
  624. #define ZONEID_SHIFT (NODES_SHIFT + ZONES_SHIFT)
  625. #define ZONEID_PGOFF ((NODES_PGOFF < ZONES_PGOFF)? \
  626. NODES_PGOFF : ZONES_PGOFF)
  627. #endif
  628. #define ZONEID_PGSHIFT (ZONEID_PGOFF * (ZONEID_SHIFT != 0))
  629. #if SECTIONS_WIDTH+NODES_WIDTH+ZONES_WIDTH > BITS_PER_LONG - NR_PAGEFLAGS
  630. #error SECTIONS_WIDTH+NODES_WIDTH+ZONES_WIDTH > BITS_PER_LONG - NR_PAGEFLAGS
  631. #endif
  632. #define ZONES_MASK ((1UL << ZONES_WIDTH) - 1)
  633. #define NODES_MASK ((1UL << NODES_WIDTH) - 1)
  634. #define SECTIONS_MASK ((1UL << SECTIONS_WIDTH) - 1)
  635. #define LAST_CPUPID_MASK ((1UL << LAST_CPUPID_SHIFT) - 1)
  636. #define ZONEID_MASK ((1UL << ZONEID_SHIFT) - 1)
  637. static inline enum zone_type page_zonenum(const struct page *page)
  638. {
  639. return (page->flags >> ZONES_PGSHIFT) & ZONES_MASK;
  640. }
  641. #ifdef CONFIG_ZONE_DEVICE
  642. void get_zone_device_page(struct page *page);
  643. void put_zone_device_page(struct page *page);
  644. static inline bool is_zone_device_page(const struct page *page)
  645. {
  646. return page_zonenum(page) == ZONE_DEVICE;
  647. }
  648. #else
  649. static inline void get_zone_device_page(struct page *page)
  650. {
  651. }
  652. static inline void put_zone_device_page(struct page *page)
  653. {
  654. }
  655. static inline bool is_zone_device_page(const struct page *page)
  656. {
  657. return false;
  658. }
  659. #endif
  660. static inline void get_page(struct page *page)
  661. {
  662. page = compound_head(page);
  663. /*
  664. * Getting a normal page or the head of a compound page
  665. * requires to already have an elevated page->_refcount.
  666. */
  667. VM_BUG_ON_PAGE(page_ref_count(page) <= 0, page);
  668. page_ref_inc(page);
  669. if (unlikely(is_zone_device_page(page)))
  670. get_zone_device_page(page);
  671. }
  672. static inline void put_page(struct page *page)
  673. {
  674. page = compound_head(page);
  675. if (put_page_testzero(page))
  676. __put_page(page);
  677. if (unlikely(is_zone_device_page(page)))
  678. put_zone_device_page(page);
  679. }
  680. #if defined(CONFIG_SPARSEMEM) && !defined(CONFIG_SPARSEMEM_VMEMMAP)
  681. #define SECTION_IN_PAGE_FLAGS
  682. #endif
  683. /*
  684. * The identification function is mainly used by the buddy allocator for
  685. * determining if two pages could be buddies. We are not really identifying
  686. * the zone since we could be using the section number id if we do not have
  687. * node id available in page flags.
  688. * We only guarantee that it will return the same value for two combinable
  689. * pages in a zone.
  690. */
  691. static inline int page_zone_id(struct page *page)
  692. {
  693. return (page->flags >> ZONEID_PGSHIFT) & ZONEID_MASK;
  694. }
  695. static inline int zone_to_nid(struct zone *zone)
  696. {
  697. #ifdef CONFIG_NUMA
  698. return zone->node;
  699. #else
  700. return 0;
  701. #endif
  702. }
  703. #ifdef NODE_NOT_IN_PAGE_FLAGS
  704. extern int page_to_nid(const struct page *page);
  705. #else
  706. static inline int page_to_nid(const struct page *page)
  707. {
  708. return (page->flags >> NODES_PGSHIFT) & NODES_MASK;
  709. }
  710. #endif
  711. #ifdef CONFIG_NUMA_BALANCING
  712. static inline int cpu_pid_to_cpupid(int cpu, int pid)
  713. {
  714. return ((cpu & LAST__CPU_MASK) << LAST__PID_SHIFT) | (pid & LAST__PID_MASK);
  715. }
  716. static inline int cpupid_to_pid(int cpupid)
  717. {
  718. return cpupid & LAST__PID_MASK;
  719. }
  720. static inline int cpupid_to_cpu(int cpupid)
  721. {
  722. return (cpupid >> LAST__PID_SHIFT) & LAST__CPU_MASK;
  723. }
  724. static inline int cpupid_to_nid(int cpupid)
  725. {
  726. return cpu_to_node(cpupid_to_cpu(cpupid));
  727. }
  728. static inline bool cpupid_pid_unset(int cpupid)
  729. {
  730. return cpupid_to_pid(cpupid) == (-1 & LAST__PID_MASK);
  731. }
  732. static inline bool cpupid_cpu_unset(int cpupid)
  733. {
  734. return cpupid_to_cpu(cpupid) == (-1 & LAST__CPU_MASK);
  735. }
  736. static inline bool __cpupid_match_pid(pid_t task_pid, int cpupid)
  737. {
  738. return (task_pid & LAST__PID_MASK) == cpupid_to_pid(cpupid);
  739. }
  740. #define cpupid_match_pid(task, cpupid) __cpupid_match_pid(task->pid, cpupid)
  741. #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
  742. static inline int page_cpupid_xchg_last(struct page *page, int cpupid)
  743. {
  744. return xchg(&page->_last_cpupid, cpupid & LAST_CPUPID_MASK);
  745. }
  746. static inline int page_cpupid_last(struct page *page)
  747. {
  748. return page->_last_cpupid;
  749. }
  750. static inline void page_cpupid_reset_last(struct page *page)
  751. {
  752. page->_last_cpupid = -1 & LAST_CPUPID_MASK;
  753. }
  754. #else
  755. static inline int page_cpupid_last(struct page *page)
  756. {
  757. return (page->flags >> LAST_CPUPID_PGSHIFT) & LAST_CPUPID_MASK;
  758. }
  759. extern int page_cpupid_xchg_last(struct page *page, int cpupid);
  760. static inline void page_cpupid_reset_last(struct page *page)
  761. {
  762. page->flags |= LAST_CPUPID_MASK << LAST_CPUPID_PGSHIFT;
  763. }
  764. #endif /* LAST_CPUPID_NOT_IN_PAGE_FLAGS */
  765. #else /* !CONFIG_NUMA_BALANCING */
  766. static inline int page_cpupid_xchg_last(struct page *page, int cpupid)
  767. {
  768. return page_to_nid(page); /* XXX */
  769. }
  770. static inline int page_cpupid_last(struct page *page)
  771. {
  772. return page_to_nid(page); /* XXX */
  773. }
  774. static inline int cpupid_to_nid(int cpupid)
  775. {
  776. return -1;
  777. }
  778. static inline int cpupid_to_pid(int cpupid)
  779. {
  780. return -1;
  781. }
  782. static inline int cpupid_to_cpu(int cpupid)
  783. {
  784. return -1;
  785. }
  786. static inline int cpu_pid_to_cpupid(int nid, int pid)
  787. {
  788. return -1;
  789. }
  790. static inline bool cpupid_pid_unset(int cpupid)
  791. {
  792. return 1;
  793. }
  794. static inline void page_cpupid_reset_last(struct page *page)
  795. {
  796. }
  797. static inline bool cpupid_match_pid(struct task_struct *task, int cpupid)
  798. {
  799. return false;
  800. }
  801. #endif /* CONFIG_NUMA_BALANCING */
  802. static inline struct zone *page_zone(const struct page *page)
  803. {
  804. return &NODE_DATA(page_to_nid(page))->node_zones[page_zonenum(page)];
  805. }
  806. static inline pg_data_t *page_pgdat(const struct page *page)
  807. {
  808. return NODE_DATA(page_to_nid(page));
  809. }
  810. #ifdef SECTION_IN_PAGE_FLAGS
  811. static inline void set_page_section(struct page *page, unsigned long section)
  812. {
  813. page->flags &= ~(SECTIONS_MASK << SECTIONS_PGSHIFT);
  814. page->flags |= (section & SECTIONS_MASK) << SECTIONS_PGSHIFT;
  815. }
  816. static inline unsigned long page_to_section(const struct page *page)
  817. {
  818. return (page->flags >> SECTIONS_PGSHIFT) & SECTIONS_MASK;
  819. }
  820. #endif
  821. static inline void set_page_zone(struct page *page, enum zone_type zone)
  822. {
  823. page->flags &= ~(ZONES_MASK << ZONES_PGSHIFT);
  824. page->flags |= (zone & ZONES_MASK) << ZONES_PGSHIFT;
  825. }
  826. static inline void set_page_node(struct page *page, unsigned long node)
  827. {
  828. page->flags &= ~(NODES_MASK << NODES_PGSHIFT);
  829. page->flags |= (node & NODES_MASK) << NODES_PGSHIFT;
  830. }
  831. static inline void set_page_links(struct page *page, enum zone_type zone,
  832. unsigned long node, unsigned long pfn)
  833. {
  834. set_page_zone(page, zone);
  835. set_page_node(page, node);
  836. #ifdef SECTION_IN_PAGE_FLAGS
  837. set_page_section(page, pfn_to_section_nr(pfn));
  838. #endif
  839. }
  840. #ifdef CONFIG_MEMCG
  841. static inline struct mem_cgroup *page_memcg(struct page *page)
  842. {
  843. return page->mem_cgroup;
  844. }
  845. static inline struct mem_cgroup *page_memcg_rcu(struct page *page)
  846. {
  847. WARN_ON_ONCE(!rcu_read_lock_held());
  848. return READ_ONCE(page->mem_cgroup);
  849. }
  850. #else
  851. static inline struct mem_cgroup *page_memcg(struct page *page)
  852. {
  853. return NULL;
  854. }
  855. static inline struct mem_cgroup *page_memcg_rcu(struct page *page)
  856. {
  857. WARN_ON_ONCE(!rcu_read_lock_held());
  858. return NULL;
  859. }
  860. #endif
  861. /*
  862. * Some inline functions in vmstat.h depend on page_zone()
  863. */
  864. #include <linux/vmstat.h>
  865. static __always_inline void *lowmem_page_address(const struct page *page)
  866. {
  867. return page_to_virt(page);
  868. }
  869. #if defined(CONFIG_HIGHMEM) && !defined(WANT_PAGE_VIRTUAL)
  870. #define HASHED_PAGE_VIRTUAL
  871. #endif
  872. #if defined(WANT_PAGE_VIRTUAL)
  873. static inline void *page_address(const struct page *page)
  874. {
  875. return page->virtual;
  876. }
  877. static inline void set_page_address(struct page *page, void *address)
  878. {
  879. page->virtual = address;
  880. }
  881. #define page_address_init() do { } while(0)
  882. #endif
  883. #if defined(HASHED_PAGE_VIRTUAL)
  884. void *page_address(const struct page *page);
  885. void set_page_address(struct page *page, void *virtual);
  886. void page_address_init(void);
  887. #endif
  888. #if !defined(HASHED_PAGE_VIRTUAL) && !defined(WANT_PAGE_VIRTUAL)
  889. #define page_address(page) lowmem_page_address(page)
  890. #define set_page_address(page, address) do { } while(0)
  891. #define page_address_init() do { } while(0)
  892. #endif
  893. extern void *page_rmapping(struct page *page);
  894. extern struct anon_vma *page_anon_vma(struct page *page);
  895. extern struct address_space *page_mapping(struct page *page);
  896. extern struct address_space *__page_file_mapping(struct page *);
  897. static inline
  898. struct address_space *page_file_mapping(struct page *page)
  899. {
  900. if (unlikely(PageSwapCache(page)))
  901. return __page_file_mapping(page);
  902. return page->mapping;
  903. }
  904. extern pgoff_t __page_file_index(struct page *page);
  905. /*
  906. * Return the pagecache index of the passed page. Regular pagecache pages
  907. * use ->index whereas swapcache pages use swp_offset(->private)
  908. */
  909. static inline pgoff_t page_index(struct page *page)
  910. {
  911. if (unlikely(PageSwapCache(page)))
  912. return __page_file_index(page);
  913. return page->index;
  914. }
  915. bool page_mapped(struct page *page);
  916. struct address_space *page_mapping(struct page *page);
  917. /*
  918. * Return true only if the page has been allocated with
  919. * ALLOC_NO_WATERMARKS and the low watermark was not
  920. * met implying that the system is under some pressure.
  921. */
  922. static inline bool page_is_pfmemalloc(struct page *page)
  923. {
  924. /*
  925. * Page index cannot be this large so this must be
  926. * a pfmemalloc page.
  927. */
  928. return page->index == -1UL;
  929. }
  930. /*
  931. * Only to be called by the page allocator on a freshly allocated
  932. * page.
  933. */
  934. static inline void set_page_pfmemalloc(struct page *page)
  935. {
  936. page->index = -1UL;
  937. }
  938. static inline void clear_page_pfmemalloc(struct page *page)
  939. {
  940. page->index = 0;
  941. }
  942. /*
  943. * Different kinds of faults, as returned by handle_mm_fault().
  944. * Used to decide whether a process gets delivered SIGBUS or
  945. * just gets major/minor fault counters bumped up.
  946. */
  947. #define VM_FAULT_OOM 0x0001
  948. #define VM_FAULT_SIGBUS 0x0002
  949. #define VM_FAULT_MAJOR 0x0004
  950. #define VM_FAULT_WRITE 0x0008 /* Special case for get_user_pages */
  951. #define VM_FAULT_HWPOISON 0x0010 /* Hit poisoned small page */
  952. #define VM_FAULT_HWPOISON_LARGE 0x0020 /* Hit poisoned large page. Index encoded in upper bits */
  953. #define VM_FAULT_SIGSEGV 0x0040
  954. #define VM_FAULT_NOPAGE 0x0100 /* ->fault installed the pte, not return page */
  955. #define VM_FAULT_LOCKED 0x0200 /* ->fault locked the returned page */
  956. #define VM_FAULT_RETRY 0x0400 /* ->fault blocked, must retry */
  957. #define VM_FAULT_FALLBACK 0x0800 /* huge page fault failed, fall back to small */
  958. #define VM_FAULT_DONE_COW 0x1000 /* ->fault has fully handled COW */
  959. #define VM_FAULT_HWPOISON_LARGE_MASK 0xf000 /* encodes hpage index for large hwpoison */
  960. #define VM_FAULT_ERROR (VM_FAULT_OOM | VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | \
  961. VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE | \
  962. VM_FAULT_FALLBACK)
  963. #define VM_FAULT_RESULT_TRACE \
  964. { VM_FAULT_OOM, "OOM" }, \
  965. { VM_FAULT_SIGBUS, "SIGBUS" }, \
  966. { VM_FAULT_MAJOR, "MAJOR" }, \
  967. { VM_FAULT_WRITE, "WRITE" }, \
  968. { VM_FAULT_HWPOISON, "HWPOISON" }, \
  969. { VM_FAULT_HWPOISON_LARGE, "HWPOISON_LARGE" }, \
  970. { VM_FAULT_SIGSEGV, "SIGSEGV" }, \
  971. { VM_FAULT_NOPAGE, "NOPAGE" }, \
  972. { VM_FAULT_LOCKED, "LOCKED" }, \
  973. { VM_FAULT_RETRY, "RETRY" }, \
  974. { VM_FAULT_FALLBACK, "FALLBACK" }, \
  975. { VM_FAULT_DONE_COW, "DONE_COW" }
  976. /* Encode hstate index for a hwpoisoned large page */
  977. #define VM_FAULT_SET_HINDEX(x) ((x) << 12)
  978. #define VM_FAULT_GET_HINDEX(x) (((x) >> 12) & 0xf)
  979. /*
  980. * Can be called by the pagefault handler when it gets a VM_FAULT_OOM.
  981. */
  982. extern void pagefault_out_of_memory(void);
  983. #define offset_in_page(p) ((unsigned long)(p) & ~PAGE_MASK)
  984. /*
  985. * Flags passed to show_mem() and show_free_areas() to suppress output in
  986. * various contexts.
  987. */
  988. #define SHOW_MEM_FILTER_NODES (0x0001u) /* disallowed nodes */
  989. extern void show_free_areas(unsigned int flags, nodemask_t *nodemask);
  990. int shmem_zero_setup(struct vm_area_struct *);
  991. #ifdef CONFIG_SHMEM
  992. bool shmem_mapping(struct address_space *mapping);
  993. #else
  994. static inline bool shmem_mapping(struct address_space *mapping)
  995. {
  996. return false;
  997. }
  998. #endif
  999. extern bool can_do_mlock(void);
  1000. extern int user_shm_lock(size_t, struct user_struct *);
  1001. extern void user_shm_unlock(size_t, struct user_struct *);
  1002. /*
  1003. * Parameter block passed down to zap_pte_range in exceptional cases.
  1004. */
  1005. struct zap_details {
  1006. struct address_space *check_mapping; /* Check page->mapping if set */
  1007. pgoff_t first_index; /* Lowest page->index to unmap */
  1008. pgoff_t last_index; /* Highest page->index to unmap */
  1009. };
  1010. struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
  1011. pte_t pte);
  1012. struct page *vm_normal_page_pmd(struct vm_area_struct *vma, unsigned long addr,
  1013. pmd_t pmd);
  1014. int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
  1015. unsigned long size);
  1016. void zap_page_range(struct vm_area_struct *vma, unsigned long address,
  1017. unsigned long size);
  1018. void unmap_vmas(struct mmu_gather *tlb, struct vm_area_struct *start_vma,
  1019. unsigned long start, unsigned long end);
  1020. /**
  1021. * mm_walk - callbacks for walk_page_range
  1022. * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry
  1023. * this handler is required to be able to handle
  1024. * pmd_trans_huge() pmds. They may simply choose to
  1025. * split_huge_page() instead of handling it explicitly.
  1026. * @pte_entry: if set, called for each non-empty PTE (4th-level) entry
  1027. * @pte_hole: if set, called for each hole at all levels
  1028. * @hugetlb_entry: if set, called for each hugetlb entry
  1029. * @test_walk: caller specific callback function to determine whether
  1030. * we walk over the current vma or not. Returning 0
  1031. * value means "do page table walk over the current vma,"
  1032. * and a negative one means "abort current page table walk
  1033. * right now." 1 means "skip the current vma."
  1034. * @mm: mm_struct representing the target process of page table walk
  1035. * @vma: vma currently walked (NULL if walking outside vmas)
  1036. * @private: private data for callbacks' usage
  1037. *
  1038. * (see the comment on walk_page_range() for more details)
  1039. */
  1040. struct mm_walk {
  1041. int (*pmd_entry)(pmd_t *pmd, unsigned long addr,
  1042. unsigned long next, struct mm_walk *walk);
  1043. int (*pte_entry)(pte_t *pte, unsigned long addr,
  1044. unsigned long next, struct mm_walk *walk);
  1045. int (*pte_hole)(unsigned long addr, unsigned long next,
  1046. struct mm_walk *walk);
  1047. int (*hugetlb_entry)(pte_t *pte, unsigned long hmask,
  1048. unsigned long addr, unsigned long next,
  1049. struct mm_walk *walk);
  1050. int (*test_walk)(unsigned long addr, unsigned long next,
  1051. struct mm_walk *walk);
  1052. struct mm_struct *mm;
  1053. struct vm_area_struct *vma;
  1054. void *private;
  1055. };
  1056. int walk_page_range(unsigned long addr, unsigned long end,
  1057. struct mm_walk *walk);
  1058. int walk_page_vma(struct vm_area_struct *vma, struct mm_walk *walk);
  1059. void free_pgd_range(struct mmu_gather *tlb, unsigned long addr,
  1060. unsigned long end, unsigned long floor, unsigned long ceiling);
  1061. int copy_page_range(struct mm_struct *dst, struct mm_struct *src,
  1062. struct vm_area_struct *vma);
  1063. void unmap_mapping_range(struct address_space *mapping,
  1064. loff_t const holebegin, loff_t const holelen, int even_cows);
  1065. int follow_pte_pmd(struct mm_struct *mm, unsigned long address,
  1066. pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp);
  1067. int follow_pfn(struct vm_area_struct *vma, unsigned long address,
  1068. unsigned long *pfn);
  1069. int follow_phys(struct vm_area_struct *vma, unsigned long address,
  1070. unsigned int flags, unsigned long *prot, resource_size_t *phys);
  1071. int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
  1072. void *buf, int len, int write);
  1073. static inline void unmap_shared_mapping_range(struct address_space *mapping,
  1074. loff_t const holebegin, loff_t const holelen)
  1075. {
  1076. unmap_mapping_range(mapping, holebegin, holelen, 0);
  1077. }
  1078. extern void truncate_pagecache(struct inode *inode, loff_t new);
  1079. extern void truncate_setsize(struct inode *inode, loff_t newsize);
  1080. void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to);
  1081. void truncate_pagecache_range(struct inode *inode, loff_t offset, loff_t end);
  1082. int truncate_inode_page(struct address_space *mapping, struct page *page);
  1083. int generic_error_remove_page(struct address_space *mapping, struct page *page);
  1084. int invalidate_inode_page(struct page *page);
  1085. #ifdef CONFIG_MMU
  1086. extern int handle_mm_fault(struct vm_area_struct *vma, unsigned long address,
  1087. unsigned int flags);
  1088. extern int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm,
  1089. unsigned long address, unsigned int fault_flags,
  1090. bool *unlocked);
  1091. #else
  1092. static inline int handle_mm_fault(struct vm_area_struct *vma,
  1093. unsigned long address, unsigned int flags)
  1094. {
  1095. /* should never happen if there's no MMU */
  1096. BUG();
  1097. return VM_FAULT_SIGBUS;
  1098. }
  1099. static inline int fixup_user_fault(struct task_struct *tsk,
  1100. struct mm_struct *mm, unsigned long address,
  1101. unsigned int fault_flags, bool *unlocked)
  1102. {
  1103. /* should never happen if there's no MMU */
  1104. BUG();
  1105. return -EFAULT;
  1106. }
  1107. #endif
  1108. extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len,
  1109. unsigned int gup_flags);
  1110. extern int access_remote_vm(struct mm_struct *mm, unsigned long addr,
  1111. void *buf, int len, unsigned int gup_flags);
  1112. extern int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
  1113. unsigned long addr, void *buf, int len, unsigned int gup_flags);
  1114. long get_user_pages_remote(struct task_struct *tsk, struct mm_struct *mm,
  1115. unsigned long start, unsigned long nr_pages,
  1116. unsigned int gup_flags, struct page **pages,
  1117. struct vm_area_struct **vmas, int *locked);
  1118. long get_user_pages(unsigned long start, unsigned long nr_pages,
  1119. unsigned int gup_flags, struct page **pages,
  1120. struct vm_area_struct **vmas);
  1121. long get_user_pages_locked(unsigned long start, unsigned long nr_pages,
  1122. unsigned int gup_flags, struct page **pages, int *locked);
  1123. long get_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
  1124. struct page **pages, unsigned int gup_flags);
  1125. int get_user_pages_fast(unsigned long start, int nr_pages, int write,
  1126. struct page **pages);
  1127. /* Container for pinned pfns / pages */
  1128. struct frame_vector {
  1129. unsigned int nr_allocated; /* Number of frames we have space for */
  1130. unsigned int nr_frames; /* Number of frames stored in ptrs array */
  1131. bool got_ref; /* Did we pin pages by getting page ref? */
  1132. bool is_pfns; /* Does array contain pages or pfns? */
  1133. void *ptrs[0]; /* Array of pinned pfns / pages. Use
  1134. * pfns_vector_pages() or pfns_vector_pfns()
  1135. * for access */
  1136. };
  1137. struct frame_vector *frame_vector_create(unsigned int nr_frames);
  1138. void frame_vector_destroy(struct frame_vector *vec);
  1139. int get_vaddr_frames(unsigned long start, unsigned int nr_pfns,
  1140. unsigned int gup_flags, struct frame_vector *vec);
  1141. void put_vaddr_frames(struct frame_vector *vec);
  1142. int frame_vector_to_pages(struct frame_vector *vec);
  1143. void frame_vector_to_pfns(struct frame_vector *vec);
  1144. static inline unsigned int frame_vector_count(struct frame_vector *vec)
  1145. {
  1146. return vec->nr_frames;
  1147. }
  1148. static inline struct page **frame_vector_pages(struct frame_vector *vec)
  1149. {
  1150. if (vec->is_pfns) {
  1151. int err = frame_vector_to_pages(vec);
  1152. if (err)
  1153. return ERR_PTR(err);
  1154. }
  1155. return (struct page **)(vec->ptrs);
  1156. }
  1157. static inline unsigned long *frame_vector_pfns(struct frame_vector *vec)
  1158. {
  1159. if (!vec->is_pfns)
  1160. frame_vector_to_pfns(vec);
  1161. return (unsigned long *)(vec->ptrs);
  1162. }
  1163. struct kvec;
  1164. int get_kernel_pages(const struct kvec *iov, int nr_pages, int write,
  1165. struct page **pages);
  1166. int get_kernel_page(unsigned long start, int write, struct page **pages);
  1167. struct page *get_dump_page(unsigned long addr);
  1168. extern int try_to_release_page(struct page * page, gfp_t gfp_mask);
  1169. extern void do_invalidatepage(struct page *page, unsigned int offset,
  1170. unsigned int length);
  1171. int __set_page_dirty_nobuffers(struct page *page);
  1172. int __set_page_dirty_no_writeback(struct page *page);
  1173. int redirty_page_for_writepage(struct writeback_control *wbc,
  1174. struct page *page);
  1175. void account_page_dirtied(struct page *page, struct address_space *mapping);
  1176. void account_page_cleaned(struct page *page, struct address_space *mapping,
  1177. struct bdi_writeback *wb);
  1178. int set_page_dirty(struct page *page);
  1179. int set_page_dirty_lock(struct page *page);
  1180. void cancel_dirty_page(struct page *page);
  1181. int clear_page_dirty_for_io(struct page *page);
  1182. int get_cmdline(struct task_struct *task, char *buffer, int buflen);
  1183. /* Is the vma a continuation of the stack vma above it? */
  1184. static inline int vma_growsdown(struct vm_area_struct *vma, unsigned long addr)
  1185. {
  1186. return vma && (vma->vm_end == addr) && (vma->vm_flags & VM_GROWSDOWN);
  1187. }
  1188. static inline bool vma_is_anonymous(struct vm_area_struct *vma)
  1189. {
  1190. return !vma->vm_ops;
  1191. }
  1192. #ifdef CONFIG_SHMEM
  1193. /*
  1194. * The vma_is_shmem is not inline because it is used only by slow
  1195. * paths in userfault.
  1196. */
  1197. bool vma_is_shmem(struct vm_area_struct *vma);
  1198. #else
  1199. static inline bool vma_is_shmem(struct vm_area_struct *vma) { return false; }
  1200. #endif
  1201. static inline int stack_guard_page_start(struct vm_area_struct *vma,
  1202. unsigned long addr)
  1203. {
  1204. return (vma->vm_flags & VM_GROWSDOWN) &&
  1205. (vma->vm_start == addr) &&
  1206. !vma_growsdown(vma->vm_prev, addr);
  1207. }
  1208. /* Is the vma a continuation of the stack vma below it? */
  1209. static inline int vma_growsup(struct vm_area_struct *vma, unsigned long addr)
  1210. {
  1211. return vma && (vma->vm_start == addr) && (vma->vm_flags & VM_GROWSUP);
  1212. }
  1213. static inline int stack_guard_page_end(struct vm_area_struct *vma,
  1214. unsigned long addr)
  1215. {
  1216. return (vma->vm_flags & VM_GROWSUP) &&
  1217. (vma->vm_end == addr) &&
  1218. !vma_growsup(vma->vm_next, addr);
  1219. }
  1220. int vma_is_stack_for_current(struct vm_area_struct *vma);
  1221. extern unsigned long move_page_tables(struct vm_area_struct *vma,
  1222. unsigned long old_addr, struct vm_area_struct *new_vma,
  1223. unsigned long new_addr, unsigned long len,
  1224. bool need_rmap_locks);
  1225. extern unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
  1226. unsigned long end, pgprot_t newprot,
  1227. int dirty_accountable, int prot_numa);
  1228. extern int mprotect_fixup(struct vm_area_struct *vma,
  1229. struct vm_area_struct **pprev, unsigned long start,
  1230. unsigned long end, unsigned long newflags);
  1231. /*
  1232. * doesn't attempt to fault and will return short.
  1233. */
  1234. int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
  1235. struct page **pages);
  1236. /*
  1237. * per-process(per-mm_struct) statistics.
  1238. */
  1239. static inline unsigned long get_mm_counter(struct mm_struct *mm, int member)
  1240. {
  1241. long val = atomic_long_read(&mm->rss_stat.count[member]);
  1242. #ifdef SPLIT_RSS_COUNTING
  1243. /*
  1244. * counter is updated in asynchronous manner and may go to minus.
  1245. * But it's never be expected number for users.
  1246. */
  1247. if (val < 0)
  1248. val = 0;
  1249. #endif
  1250. return (unsigned long)val;
  1251. }
  1252. static inline void add_mm_counter(struct mm_struct *mm, int member, long value)
  1253. {
  1254. atomic_long_add(value, &mm->rss_stat.count[member]);
  1255. }
  1256. static inline void inc_mm_counter(struct mm_struct *mm, int member)
  1257. {
  1258. atomic_long_inc(&mm->rss_stat.count[member]);
  1259. }
  1260. static inline void dec_mm_counter(struct mm_struct *mm, int member)
  1261. {
  1262. atomic_long_dec(&mm->rss_stat.count[member]);
  1263. }
  1264. /* Optimized variant when page is already known not to be PageAnon */
  1265. static inline int mm_counter_file(struct page *page)
  1266. {
  1267. if (PageSwapBacked(page))
  1268. return MM_SHMEMPAGES;
  1269. return MM_FILEPAGES;
  1270. }
  1271. static inline int mm_counter(struct page *page)
  1272. {
  1273. if (PageAnon(page))
  1274. return MM_ANONPAGES;
  1275. return mm_counter_file(page);
  1276. }
  1277. static inline unsigned long get_mm_rss(struct mm_struct *mm)
  1278. {
  1279. return get_mm_counter(mm, MM_FILEPAGES) +
  1280. get_mm_counter(mm, MM_ANONPAGES) +
  1281. get_mm_counter(mm, MM_SHMEMPAGES);
  1282. }
  1283. static inline unsigned long get_mm_hiwater_rss(struct mm_struct *mm)
  1284. {
  1285. return max(mm->hiwater_rss, get_mm_rss(mm));
  1286. }
  1287. static inline unsigned long get_mm_hiwater_vm(struct mm_struct *mm)
  1288. {
  1289. return max(mm->hiwater_vm, mm->total_vm);
  1290. }
  1291. static inline void update_hiwater_rss(struct mm_struct *mm)
  1292. {
  1293. unsigned long _rss = get_mm_rss(mm);
  1294. if ((mm)->hiwater_rss < _rss)
  1295. (mm)->hiwater_rss = _rss;
  1296. }
  1297. static inline void update_hiwater_vm(struct mm_struct *mm)
  1298. {
  1299. if (mm->hiwater_vm < mm->total_vm)
  1300. mm->hiwater_vm = mm->total_vm;
  1301. }
  1302. static inline void reset_mm_hiwater_rss(struct mm_struct *mm)
  1303. {
  1304. mm->hiwater_rss = get_mm_rss(mm);
  1305. }
  1306. static inline void setmax_mm_hiwater_rss(unsigned long *maxrss,
  1307. struct mm_struct *mm)
  1308. {
  1309. unsigned long hiwater_rss = get_mm_hiwater_rss(mm);
  1310. if (*maxrss < hiwater_rss)
  1311. *maxrss = hiwater_rss;
  1312. }
  1313. #if defined(SPLIT_RSS_COUNTING)
  1314. void sync_mm_rss(struct mm_struct *mm);
  1315. #else
  1316. static inline void sync_mm_rss(struct mm_struct *mm)
  1317. {
  1318. }
  1319. #endif
  1320. #ifndef __HAVE_ARCH_PTE_DEVMAP
  1321. static inline int pte_devmap(pte_t pte)
  1322. {
  1323. return 0;
  1324. }
  1325. #endif
  1326. int vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot);
  1327. extern pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
  1328. spinlock_t **ptl);
  1329. static inline pte_t *get_locked_pte(struct mm_struct *mm, unsigned long addr,
  1330. spinlock_t **ptl)
  1331. {
  1332. pte_t *ptep;
  1333. __cond_lock(*ptl, ptep = __get_locked_pte(mm, addr, ptl));
  1334. return ptep;
  1335. }
  1336. #ifdef __PAGETABLE_PUD_FOLDED
  1337. static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd,
  1338. unsigned long address)
  1339. {
  1340. return 0;
  1341. }
  1342. #else
  1343. int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address);
  1344. #endif
  1345. #if defined(__PAGETABLE_PMD_FOLDED) || !defined(CONFIG_MMU)
  1346. static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud,
  1347. unsigned long address)
  1348. {
  1349. return 0;
  1350. }
  1351. static inline void mm_nr_pmds_init(struct mm_struct *mm) {}
  1352. static inline unsigned long mm_nr_pmds(struct mm_struct *mm)
  1353. {
  1354. return 0;
  1355. }
  1356. static inline void mm_inc_nr_pmds(struct mm_struct *mm) {}
  1357. static inline void mm_dec_nr_pmds(struct mm_struct *mm) {}
  1358. #else
  1359. int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address);
  1360. static inline void mm_nr_pmds_init(struct mm_struct *mm)
  1361. {
  1362. atomic_long_set(&mm->nr_pmds, 0);
  1363. }
  1364. static inline unsigned long mm_nr_pmds(struct mm_struct *mm)
  1365. {
  1366. return atomic_long_read(&mm->nr_pmds);
  1367. }
  1368. static inline void mm_inc_nr_pmds(struct mm_struct *mm)
  1369. {
  1370. atomic_long_inc(&mm->nr_pmds);
  1371. }
  1372. static inline void mm_dec_nr_pmds(struct mm_struct *mm)
  1373. {
  1374. atomic_long_dec(&mm->nr_pmds);
  1375. }
  1376. #endif
  1377. int __pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address);
  1378. int __pte_alloc_kernel(pmd_t *pmd, unsigned long address);
  1379. /*
  1380. * The following ifdef needed to get the 4level-fixup.h header to work.
  1381. * Remove it when 4level-fixup.h has been removed.
  1382. */
  1383. #if defined(CONFIG_MMU) && !defined(__ARCH_HAS_4LEVEL_HACK)
  1384. static inline pud_t *pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  1385. {
  1386. return (unlikely(pgd_none(*pgd)) && __pud_alloc(mm, pgd, address))?
  1387. NULL: pud_offset(pgd, address);
  1388. }
  1389. static inline pmd_t *pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
  1390. {
  1391. return (unlikely(pud_none(*pud)) && __pmd_alloc(mm, pud, address))?
  1392. NULL: pmd_offset(pud, address);
  1393. }
  1394. #endif /* CONFIG_MMU && !__ARCH_HAS_4LEVEL_HACK */
  1395. #if USE_SPLIT_PTE_PTLOCKS
  1396. #if ALLOC_SPLIT_PTLOCKS
  1397. void __init ptlock_cache_init(void);
  1398. extern bool ptlock_alloc(struct page *page);
  1399. extern void ptlock_free(struct page *page);
  1400. static inline spinlock_t *ptlock_ptr(struct page *page)
  1401. {
  1402. return page->ptl;
  1403. }
  1404. #else /* ALLOC_SPLIT_PTLOCKS */
  1405. static inline void ptlock_cache_init(void)
  1406. {
  1407. }
  1408. static inline bool ptlock_alloc(struct page *page)
  1409. {
  1410. return true;
  1411. }
  1412. static inline void ptlock_free(struct page *page)
  1413. {
  1414. }
  1415. static inline spinlock_t *ptlock_ptr(struct page *page)
  1416. {
  1417. return &page->ptl;
  1418. }
  1419. #endif /* ALLOC_SPLIT_PTLOCKS */
  1420. static inline spinlock_t *pte_lockptr(struct mm_struct *mm, pmd_t *pmd)
  1421. {
  1422. return ptlock_ptr(pmd_page(*pmd));
  1423. }
  1424. static inline bool ptlock_init(struct page *page)
  1425. {
  1426. /*
  1427. * prep_new_page() initialize page->private (and therefore page->ptl)
  1428. * with 0. Make sure nobody took it in use in between.
  1429. *
  1430. * It can happen if arch try to use slab for page table allocation:
  1431. * slab code uses page->slab_cache, which share storage with page->ptl.
  1432. */
  1433. VM_BUG_ON_PAGE(*(unsigned long *)&page->ptl, page);
  1434. if (!ptlock_alloc(page))
  1435. return false;
  1436. spin_lock_init(ptlock_ptr(page));
  1437. return true;
  1438. }
  1439. /* Reset page->mapping so free_pages_check won't complain. */
  1440. static inline void pte_lock_deinit(struct page *page)
  1441. {
  1442. page->mapping = NULL;
  1443. ptlock_free(page);
  1444. }
  1445. #else /* !USE_SPLIT_PTE_PTLOCKS */
  1446. /*
  1447. * We use mm->page_table_lock to guard all pagetable pages of the mm.
  1448. */
  1449. static inline spinlock_t *pte_lockptr(struct mm_struct *mm, pmd_t *pmd)
  1450. {
  1451. return &mm->page_table_lock;
  1452. }
  1453. static inline void ptlock_cache_init(void) {}
  1454. static inline bool ptlock_init(struct page *page) { return true; }
  1455. static inline void pte_lock_deinit(struct page *page) {}
  1456. #endif /* USE_SPLIT_PTE_PTLOCKS */
  1457. static inline void pgtable_init(void)
  1458. {
  1459. ptlock_cache_init();
  1460. pgtable_cache_init();
  1461. }
  1462. static inline bool pgtable_page_ctor(struct page *page)
  1463. {
  1464. if (!ptlock_init(page))
  1465. return false;
  1466. inc_zone_page_state(page, NR_PAGETABLE);
  1467. return true;
  1468. }
  1469. static inline void pgtable_page_dtor(struct page *page)
  1470. {
  1471. pte_lock_deinit(page);
  1472. dec_zone_page_state(page, NR_PAGETABLE);
  1473. }
  1474. #define pte_offset_map_lock(mm, pmd, address, ptlp) \
  1475. ({ \
  1476. spinlock_t *__ptl = pte_lockptr(mm, pmd); \
  1477. pte_t *__pte = pte_offset_map(pmd, address); \
  1478. *(ptlp) = __ptl; \
  1479. spin_lock(__ptl); \
  1480. __pte; \
  1481. })
  1482. #define pte_unmap_unlock(pte, ptl) do { \
  1483. spin_unlock(ptl); \
  1484. pte_unmap(pte); \
  1485. } while (0)
  1486. #define pte_alloc(mm, pmd, address) \
  1487. (unlikely(pmd_none(*(pmd))) && __pte_alloc(mm, pmd, address))
  1488. #define pte_alloc_map(mm, pmd, address) \
  1489. (pte_alloc(mm, pmd, address) ? NULL : pte_offset_map(pmd, address))
  1490. #define pte_alloc_map_lock(mm, pmd, address, ptlp) \
  1491. (pte_alloc(mm, pmd, address) ? \
  1492. NULL : pte_offset_map_lock(mm, pmd, address, ptlp))
  1493. #define pte_alloc_kernel(pmd, address) \
  1494. ((unlikely(pmd_none(*(pmd))) && __pte_alloc_kernel(pmd, address))? \
  1495. NULL: pte_offset_kernel(pmd, address))
  1496. #if USE_SPLIT_PMD_PTLOCKS
  1497. static struct page *pmd_to_page(pmd_t *pmd)
  1498. {
  1499. unsigned long mask = ~(PTRS_PER_PMD * sizeof(pmd_t) - 1);
  1500. return virt_to_page((void *)((unsigned long) pmd & mask));
  1501. }
  1502. static inline spinlock_t *pmd_lockptr(struct mm_struct *mm, pmd_t *pmd)
  1503. {
  1504. return ptlock_ptr(pmd_to_page(pmd));
  1505. }
  1506. static inline bool pgtable_pmd_page_ctor(struct page *page)
  1507. {
  1508. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  1509. page->pmd_huge_pte = NULL;
  1510. #endif
  1511. return ptlock_init(page);
  1512. }
  1513. static inline void pgtable_pmd_page_dtor(struct page *page)
  1514. {
  1515. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  1516. VM_BUG_ON_PAGE(page->pmd_huge_pte, page);
  1517. #endif
  1518. ptlock_free(page);
  1519. }
  1520. #define pmd_huge_pte(mm, pmd) (pmd_to_page(pmd)->pmd_huge_pte)
  1521. #else
  1522. static inline spinlock_t *pmd_lockptr(struct mm_struct *mm, pmd_t *pmd)
  1523. {
  1524. return &mm->page_table_lock;
  1525. }
  1526. static inline bool pgtable_pmd_page_ctor(struct page *page) { return true; }
  1527. static inline void pgtable_pmd_page_dtor(struct page *page) {}
  1528. #define pmd_huge_pte(mm, pmd) ((mm)->pmd_huge_pte)
  1529. #endif
  1530. static inline spinlock_t *pmd_lock(struct mm_struct *mm, pmd_t *pmd)
  1531. {
  1532. spinlock_t *ptl = pmd_lockptr(mm, pmd);
  1533. spin_lock(ptl);
  1534. return ptl;
  1535. }
  1536. extern void __init pagecache_init(void);
  1537. extern void free_area_init(unsigned long * zones_size);
  1538. extern void free_area_init_node(int nid, unsigned long * zones_size,
  1539. unsigned long zone_start_pfn, unsigned long *zholes_size);
  1540. extern void free_initmem(void);
  1541. /*
  1542. * Free reserved pages within range [PAGE_ALIGN(start), end & PAGE_MASK)
  1543. * into the buddy system. The freed pages will be poisoned with pattern
  1544. * "poison" if it's within range [0, UCHAR_MAX].
  1545. * Return pages freed into the buddy system.
  1546. */
  1547. extern unsigned long free_reserved_area(void *start, void *end,
  1548. int poison, char *s);
  1549. #ifdef CONFIG_HIGHMEM
  1550. /*
  1551. * Free a highmem page into the buddy system, adjusting totalhigh_pages
  1552. * and totalram_pages.
  1553. */
  1554. extern void free_highmem_page(struct page *page);
  1555. #endif
  1556. extern void adjust_managed_page_count(struct page *page, long count);
  1557. extern void mem_init_print_info(const char *str);
  1558. extern void reserve_bootmem_region(phys_addr_t start, phys_addr_t end);
  1559. /* Free the reserved page into the buddy system, so it gets managed. */
  1560. static inline void __free_reserved_page(struct page *page)
  1561. {
  1562. ClearPageReserved(page);
  1563. init_page_count(page);
  1564. __free_page(page);
  1565. }
  1566. static inline void free_reserved_page(struct page *page)
  1567. {
  1568. __free_reserved_page(page);
  1569. adjust_managed_page_count(page, 1);
  1570. }
  1571. static inline void mark_page_reserved(struct page *page)
  1572. {
  1573. SetPageReserved(page);
  1574. adjust_managed_page_count(page, -1);
  1575. }
  1576. /*
  1577. * Default method to free all the __init memory into the buddy system.
  1578. * The freed pages will be poisoned with pattern "poison" if it's within
  1579. * range [0, UCHAR_MAX].
  1580. * Return pages freed into the buddy system.
  1581. */
  1582. static inline unsigned long free_initmem_default(int poison)
  1583. {
  1584. extern char __init_begin[], __init_end[];
  1585. return free_reserved_area(&__init_begin, &__init_end,
  1586. poison, "unused kernel");
  1587. }
  1588. static inline unsigned long get_num_physpages(void)
  1589. {
  1590. int nid;
  1591. unsigned long phys_pages = 0;
  1592. for_each_online_node(nid)
  1593. phys_pages += node_present_pages(nid);
  1594. return phys_pages;
  1595. }
  1596. #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
  1597. /*
  1598. * With CONFIG_HAVE_MEMBLOCK_NODE_MAP set, an architecture may initialise its
  1599. * zones, allocate the backing mem_map and account for memory holes in a more
  1600. * architecture independent manner. This is a substitute for creating the
  1601. * zone_sizes[] and zholes_size[] arrays and passing them to
  1602. * free_area_init_node()
  1603. *
  1604. * An architecture is expected to register range of page frames backed by
  1605. * physical memory with memblock_add[_node]() before calling
  1606. * free_area_init_nodes() passing in the PFN each zone ends at. At a basic
  1607. * usage, an architecture is expected to do something like
  1608. *
  1609. * unsigned long max_zone_pfns[MAX_NR_ZONES] = {max_dma, max_normal_pfn,
  1610. * max_highmem_pfn};
  1611. * for_each_valid_physical_page_range()
  1612. * memblock_add_node(base, size, nid)
  1613. * free_area_init_nodes(max_zone_pfns);
  1614. *
  1615. * free_bootmem_with_active_regions() calls free_bootmem_node() for each
  1616. * registered physical page range. Similarly
  1617. * sparse_memory_present_with_active_regions() calls memory_present() for
  1618. * each range when SPARSEMEM is enabled.
  1619. *
  1620. * See mm/page_alloc.c for more information on each function exposed by
  1621. * CONFIG_HAVE_MEMBLOCK_NODE_MAP.
  1622. */
  1623. extern void free_area_init_nodes(unsigned long *max_zone_pfn);
  1624. unsigned long node_map_pfn_alignment(void);
  1625. unsigned long __absent_pages_in_range(int nid, unsigned long start_pfn,
  1626. unsigned long end_pfn);
  1627. extern unsigned long absent_pages_in_range(unsigned long start_pfn,
  1628. unsigned long end_pfn);
  1629. extern void get_pfn_range_for_nid(unsigned int nid,
  1630. unsigned long *start_pfn, unsigned long *end_pfn);
  1631. extern unsigned long find_min_pfn_with_active_regions(void);
  1632. extern void free_bootmem_with_active_regions(int nid,
  1633. unsigned long max_low_pfn);
  1634. extern void sparse_memory_present_with_active_regions(int nid);
  1635. #endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
  1636. #if !defined(CONFIG_HAVE_MEMBLOCK_NODE_MAP) && \
  1637. !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID)
  1638. static inline int __early_pfn_to_nid(unsigned long pfn,
  1639. struct mminit_pfnnid_cache *state)
  1640. {
  1641. return 0;
  1642. }
  1643. #else
  1644. /* please see mm/page_alloc.c */
  1645. extern int __meminit early_pfn_to_nid(unsigned long pfn);
  1646. /* there is a per-arch backend function. */
  1647. extern int __meminit __early_pfn_to_nid(unsigned long pfn,
  1648. struct mminit_pfnnid_cache *state);
  1649. #endif
  1650. extern void set_dma_reserve(unsigned long new_dma_reserve);
  1651. extern void memmap_init_zone(unsigned long, int, unsigned long,
  1652. unsigned long, enum memmap_context);
  1653. extern void setup_per_zone_wmarks(void);
  1654. extern int __meminit init_per_zone_wmark_min(void);
  1655. extern void mem_init(void);
  1656. extern void __init mmap_init(void);
  1657. extern void show_mem(unsigned int flags, nodemask_t *nodemask);
  1658. extern long si_mem_available(void);
  1659. extern void si_meminfo(struct sysinfo * val);
  1660. extern void si_meminfo_node(struct sysinfo *val, int nid);
  1661. #ifdef __HAVE_ARCH_RESERVED_KERNEL_PAGES
  1662. extern unsigned long arch_reserved_kernel_pages(void);
  1663. #endif
  1664. extern __printf(3, 4)
  1665. void warn_alloc(gfp_t gfp_mask, nodemask_t *nodemask, const char *fmt, ...);
  1666. extern void setup_per_cpu_pageset(void);
  1667. extern void zone_pcp_update(struct zone *zone);
  1668. extern void zone_pcp_reset(struct zone *zone);
  1669. /* page_alloc.c */
  1670. extern int min_free_kbytes;
  1671. extern int watermark_scale_factor;
  1672. /* nommu.c */
  1673. extern atomic_long_t mmap_pages_allocated;
  1674. extern int nommu_shrink_inode_mappings(struct inode *, size_t, size_t);
  1675. /* interval_tree.c */
  1676. void vma_interval_tree_insert(struct vm_area_struct *node,
  1677. struct rb_root *root);
  1678. void vma_interval_tree_insert_after(struct vm_area_struct *node,
  1679. struct vm_area_struct *prev,
  1680. struct rb_root *root);
  1681. void vma_interval_tree_remove(struct vm_area_struct *node,
  1682. struct rb_root *root);
  1683. struct vm_area_struct *vma_interval_tree_iter_first(struct rb_root *root,
  1684. unsigned long start, unsigned long last);
  1685. struct vm_area_struct *vma_interval_tree_iter_next(struct vm_area_struct *node,
  1686. unsigned long start, unsigned long last);
  1687. #define vma_interval_tree_foreach(vma, root, start, last) \
  1688. for (vma = vma_interval_tree_iter_first(root, start, last); \
  1689. vma; vma = vma_interval_tree_iter_next(vma, start, last))
  1690. void anon_vma_interval_tree_insert(struct anon_vma_chain *node,
  1691. struct rb_root *root);
  1692. void anon_vma_interval_tree_remove(struct anon_vma_chain *node,
  1693. struct rb_root *root);
  1694. struct anon_vma_chain *anon_vma_interval_tree_iter_first(
  1695. struct rb_root *root, unsigned long start, unsigned long last);
  1696. struct anon_vma_chain *anon_vma_interval_tree_iter_next(
  1697. struct anon_vma_chain *node, unsigned long start, unsigned long last);
  1698. #ifdef CONFIG_DEBUG_VM_RB
  1699. void anon_vma_interval_tree_verify(struct anon_vma_chain *node);
  1700. #endif
  1701. #define anon_vma_interval_tree_foreach(avc, root, start, last) \
  1702. for (avc = anon_vma_interval_tree_iter_first(root, start, last); \
  1703. avc; avc = anon_vma_interval_tree_iter_next(avc, start, last))
  1704. /* mmap.c */
  1705. extern int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin);
  1706. extern int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
  1707. unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert,
  1708. struct vm_area_struct *expand);
  1709. static inline int vma_adjust(struct vm_area_struct *vma, unsigned long start,
  1710. unsigned long end, pgoff_t pgoff, struct vm_area_struct *insert)
  1711. {
  1712. return __vma_adjust(vma, start, end, pgoff, insert, NULL);
  1713. }
  1714. extern struct vm_area_struct *vma_merge(struct mm_struct *,
  1715. struct vm_area_struct *prev, unsigned long addr, unsigned long end,
  1716. unsigned long vm_flags, struct anon_vma *, struct file *, pgoff_t,
  1717. struct mempolicy *, struct vm_userfaultfd_ctx);
  1718. extern struct anon_vma *find_mergeable_anon_vma(struct vm_area_struct *);
  1719. extern int split_vma(struct mm_struct *,
  1720. struct vm_area_struct *, unsigned long addr, int new_below);
  1721. extern int insert_vm_struct(struct mm_struct *, struct vm_area_struct *);
  1722. extern void __vma_link_rb(struct mm_struct *, struct vm_area_struct *,
  1723. struct rb_node **, struct rb_node *);
  1724. extern void unlink_file_vma(struct vm_area_struct *);
  1725. extern struct vm_area_struct *copy_vma(struct vm_area_struct **,
  1726. unsigned long addr, unsigned long len, pgoff_t pgoff,
  1727. bool *need_rmap_locks);
  1728. extern void exit_mmap(struct mm_struct *);
  1729. static inline int check_data_rlimit(unsigned long rlim,
  1730. unsigned long new,
  1731. unsigned long start,
  1732. unsigned long end_data,
  1733. unsigned long start_data)
  1734. {
  1735. if (rlim < RLIM_INFINITY) {
  1736. if (((new - start) + (end_data - start_data)) > rlim)
  1737. return -ENOSPC;
  1738. }
  1739. return 0;
  1740. }
  1741. extern int mm_take_all_locks(struct mm_struct *mm);
  1742. extern void mm_drop_all_locks(struct mm_struct *mm);
  1743. extern void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file);
  1744. extern struct file *get_mm_exe_file(struct mm_struct *mm);
  1745. extern struct file *get_task_exe_file(struct task_struct *task);
  1746. extern bool may_expand_vm(struct mm_struct *, vm_flags_t, unsigned long npages);
  1747. extern void vm_stat_account(struct mm_struct *, vm_flags_t, long npages);
  1748. extern bool vma_is_special_mapping(const struct vm_area_struct *vma,
  1749. const struct vm_special_mapping *sm);
  1750. extern struct vm_area_struct *_install_special_mapping(struct mm_struct *mm,
  1751. unsigned long addr, unsigned long len,
  1752. unsigned long flags,
  1753. const struct vm_special_mapping *spec);
  1754. /* This is an obsolete alternative to _install_special_mapping. */
  1755. extern int install_special_mapping(struct mm_struct *mm,
  1756. unsigned long addr, unsigned long len,
  1757. unsigned long flags, struct page **pages);
  1758. extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  1759. extern unsigned long mmap_region(struct file *file, unsigned long addr,
  1760. unsigned long len, vm_flags_t vm_flags, unsigned long pgoff);
  1761. extern unsigned long do_mmap(struct file *file, unsigned long addr,
  1762. unsigned long len, unsigned long prot, unsigned long flags,
  1763. vm_flags_t vm_flags, unsigned long pgoff, unsigned long *populate);
  1764. extern int do_munmap(struct mm_struct *, unsigned long, size_t);
  1765. static inline unsigned long
  1766. do_mmap_pgoff(struct file *file, unsigned long addr,
  1767. unsigned long len, unsigned long prot, unsigned long flags,
  1768. unsigned long pgoff, unsigned long *populate)
  1769. {
  1770. return do_mmap(file, addr, len, prot, flags, 0, pgoff, populate);
  1771. }
  1772. #ifdef CONFIG_MMU
  1773. extern int __mm_populate(unsigned long addr, unsigned long len,
  1774. int ignore_errors);
  1775. static inline void mm_populate(unsigned long addr, unsigned long len)
  1776. {
  1777. /* Ignore errors */
  1778. (void) __mm_populate(addr, len, 1);
  1779. }
  1780. #else
  1781. static inline void mm_populate(unsigned long addr, unsigned long len) {}
  1782. #endif
  1783. /* These take the mm semaphore themselves */
  1784. extern int __must_check vm_brk(unsigned long, unsigned long);
  1785. extern int __must_check vm_brk_flags(unsigned long, unsigned long, unsigned long);
  1786. extern int vm_munmap(unsigned long, size_t);
  1787. extern unsigned long __must_check vm_mmap(struct file *, unsigned long,
  1788. unsigned long, unsigned long,
  1789. unsigned long, unsigned long);
  1790. struct vm_unmapped_area_info {
  1791. #define VM_UNMAPPED_AREA_TOPDOWN 1
  1792. unsigned long flags;
  1793. unsigned long length;
  1794. unsigned long low_limit;
  1795. unsigned long high_limit;
  1796. unsigned long align_mask;
  1797. unsigned long align_offset;
  1798. };
  1799. extern unsigned long unmapped_area(struct vm_unmapped_area_info *info);
  1800. extern unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info);
  1801. /*
  1802. * Search for an unmapped address range.
  1803. *
  1804. * We are looking for a range that:
  1805. * - does not intersect with any VMA;
  1806. * - is contained within the [low_limit, high_limit) interval;
  1807. * - is at least the desired size.
  1808. * - satisfies (begin_addr & align_mask) == (align_offset & align_mask)
  1809. */
  1810. static inline unsigned long
  1811. vm_unmapped_area(struct vm_unmapped_area_info *info)
  1812. {
  1813. if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
  1814. return unmapped_area_topdown(info);
  1815. else
  1816. return unmapped_area(info);
  1817. }
  1818. /* truncate.c */
  1819. extern void truncate_inode_pages(struct address_space *, loff_t);
  1820. extern void truncate_inode_pages_range(struct address_space *,
  1821. loff_t lstart, loff_t lend);
  1822. extern void truncate_inode_pages_final(struct address_space *);
  1823. /* generic vm_area_ops exported for stackable file systems */
  1824. extern int filemap_fault(struct vm_fault *vmf);
  1825. extern void filemap_map_pages(struct vm_fault *vmf,
  1826. pgoff_t start_pgoff, pgoff_t end_pgoff);
  1827. extern int filemap_page_mkwrite(struct vm_fault *vmf);
  1828. /* mm/page-writeback.c */
  1829. int write_one_page(struct page *page, int wait);
  1830. void task_dirty_inc(struct task_struct *tsk);
  1831. /* readahead.c */
  1832. #define VM_MAX_READAHEAD 128 /* kbytes */
  1833. #define VM_MIN_READAHEAD 16 /* kbytes (includes current page) */
  1834. int force_page_cache_readahead(struct address_space *mapping, struct file *filp,
  1835. pgoff_t offset, unsigned long nr_to_read);
  1836. void page_cache_sync_readahead(struct address_space *mapping,
  1837. struct file_ra_state *ra,
  1838. struct file *filp,
  1839. pgoff_t offset,
  1840. unsigned long size);
  1841. void page_cache_async_readahead(struct address_space *mapping,
  1842. struct file_ra_state *ra,
  1843. struct file *filp,
  1844. struct page *pg,
  1845. pgoff_t offset,
  1846. unsigned long size);
  1847. /* Generic expand stack which grows the stack according to GROWS{UP,DOWN} */
  1848. extern int expand_stack(struct vm_area_struct *vma, unsigned long address);
  1849. /* CONFIG_STACK_GROWSUP still needs to to grow downwards at some places */
  1850. extern int expand_downwards(struct vm_area_struct *vma,
  1851. unsigned long address);
  1852. #if VM_GROWSUP
  1853. extern int expand_upwards(struct vm_area_struct *vma, unsigned long address);
  1854. #else
  1855. #define expand_upwards(vma, address) (0)
  1856. #endif
  1857. /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
  1858. extern struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr);
  1859. extern struct vm_area_struct * find_vma_prev(struct mm_struct * mm, unsigned long addr,
  1860. struct vm_area_struct **pprev);
  1861. /* Look up the first VMA which intersects the interval start_addr..end_addr-1,
  1862. NULL if none. Assume start_addr < end_addr. */
  1863. static inline struct vm_area_struct * find_vma_intersection(struct mm_struct * mm, unsigned long start_addr, unsigned long end_addr)
  1864. {
  1865. struct vm_area_struct * vma = find_vma(mm,start_addr);
  1866. if (vma && end_addr <= vma->vm_start)
  1867. vma = NULL;
  1868. return vma;
  1869. }
  1870. static inline unsigned long vma_pages(struct vm_area_struct *vma)
  1871. {
  1872. return (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
  1873. }
  1874. /* Look up the first VMA which exactly match the interval vm_start ... vm_end */
  1875. static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm,
  1876. unsigned long vm_start, unsigned long vm_end)
  1877. {
  1878. struct vm_area_struct *vma = find_vma(mm, vm_start);
  1879. if (vma && (vma->vm_start != vm_start || vma->vm_end != vm_end))
  1880. vma = NULL;
  1881. return vma;
  1882. }
  1883. #ifdef CONFIG_MMU
  1884. pgprot_t vm_get_page_prot(unsigned long vm_flags);
  1885. void vma_set_page_prot(struct vm_area_struct *vma);
  1886. #else
  1887. static inline pgprot_t vm_get_page_prot(unsigned long vm_flags)
  1888. {
  1889. return __pgprot(0);
  1890. }
  1891. static inline void vma_set_page_prot(struct vm_area_struct *vma)
  1892. {
  1893. vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
  1894. }
  1895. #endif
  1896. #ifdef CONFIG_NUMA_BALANCING
  1897. unsigned long change_prot_numa(struct vm_area_struct *vma,
  1898. unsigned long start, unsigned long end);
  1899. #endif
  1900. struct vm_area_struct *find_extend_vma(struct mm_struct *, unsigned long addr);
  1901. int remap_pfn_range(struct vm_area_struct *, unsigned long addr,
  1902. unsigned long pfn, unsigned long size, pgprot_t);
  1903. int vm_insert_page(struct vm_area_struct *, unsigned long addr, struct page *);
  1904. int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
  1905. unsigned long pfn);
  1906. int vm_insert_pfn_prot(struct vm_area_struct *vma, unsigned long addr,
  1907. unsigned long pfn, pgprot_t pgprot);
  1908. int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
  1909. pfn_t pfn);
  1910. int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len);
  1911. struct page *follow_page_mask(struct vm_area_struct *vma,
  1912. unsigned long address, unsigned int foll_flags,
  1913. unsigned int *page_mask);
  1914. static inline struct page *follow_page(struct vm_area_struct *vma,
  1915. unsigned long address, unsigned int foll_flags)
  1916. {
  1917. unsigned int unused_page_mask;
  1918. return follow_page_mask(vma, address, foll_flags, &unused_page_mask);
  1919. }
  1920. #define FOLL_WRITE 0x01 /* check pte is writable */
  1921. #define FOLL_TOUCH 0x02 /* mark page accessed */
  1922. #define FOLL_GET 0x04 /* do get_page on page */
  1923. #define FOLL_DUMP 0x08 /* give error on hole if it would be zero */
  1924. #define FOLL_FORCE 0x10 /* get_user_pages read/write w/o permission */
  1925. #define FOLL_NOWAIT 0x20 /* if a disk transfer is needed, start the IO
  1926. * and return without waiting upon it */
  1927. #define FOLL_POPULATE 0x40 /* fault in page */
  1928. #define FOLL_SPLIT 0x80 /* don't return transhuge pages, split them */
  1929. #define FOLL_HWPOISON 0x100 /* check page is hwpoisoned */
  1930. #define FOLL_NUMA 0x200 /* force NUMA hinting page fault */
  1931. #define FOLL_MIGRATION 0x400 /* wait for page to replace migration entry */
  1932. #define FOLL_TRIED 0x800 /* a retry, previous pass started an IO */
  1933. #define FOLL_MLOCK 0x1000 /* lock present pages */
  1934. #define FOLL_REMOTE 0x2000 /* we are working on non-current tsk/mm */
  1935. #define FOLL_COW 0x4000 /* internal GUP flag */
  1936. typedef int (*pte_fn_t)(pte_t *pte, pgtable_t token, unsigned long addr,
  1937. void *data);
  1938. extern int apply_to_page_range(struct mm_struct *mm, unsigned long address,
  1939. unsigned long size, pte_fn_t fn, void *data);
  1940. #ifdef CONFIG_PAGE_POISONING
  1941. extern bool page_poisoning_enabled(void);
  1942. extern void kernel_poison_pages(struct page *page, int numpages, int enable);
  1943. extern bool page_is_poisoned(struct page *page);
  1944. #else
  1945. static inline bool page_poisoning_enabled(void) { return false; }
  1946. static inline void kernel_poison_pages(struct page *page, int numpages,
  1947. int enable) { }
  1948. static inline bool page_is_poisoned(struct page *page) { return false; }
  1949. #endif
  1950. #ifdef CONFIG_DEBUG_PAGEALLOC
  1951. extern bool _debug_pagealloc_enabled;
  1952. extern void __kernel_map_pages(struct page *page, int numpages, int enable);
  1953. static inline bool debug_pagealloc_enabled(void)
  1954. {
  1955. return _debug_pagealloc_enabled;
  1956. }
  1957. static inline void
  1958. kernel_map_pages(struct page *page, int numpages, int enable)
  1959. {
  1960. if (!debug_pagealloc_enabled())
  1961. return;
  1962. __kernel_map_pages(page, numpages, enable);
  1963. }
  1964. #ifdef CONFIG_HIBERNATION
  1965. extern bool kernel_page_present(struct page *page);
  1966. #endif /* CONFIG_HIBERNATION */
  1967. #else /* CONFIG_DEBUG_PAGEALLOC */
  1968. static inline void
  1969. kernel_map_pages(struct page *page, int numpages, int enable) {}
  1970. #ifdef CONFIG_HIBERNATION
  1971. static inline bool kernel_page_present(struct page *page) { return true; }
  1972. #endif /* CONFIG_HIBERNATION */
  1973. static inline bool debug_pagealloc_enabled(void)
  1974. {
  1975. return false;
  1976. }
  1977. #endif /* CONFIG_DEBUG_PAGEALLOC */
  1978. #ifdef __HAVE_ARCH_GATE_AREA
  1979. extern struct vm_area_struct *get_gate_vma(struct mm_struct *mm);
  1980. extern int in_gate_area_no_mm(unsigned long addr);
  1981. extern int in_gate_area(struct mm_struct *mm, unsigned long addr);
  1982. #else
  1983. static inline struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
  1984. {
  1985. return NULL;
  1986. }
  1987. static inline int in_gate_area_no_mm(unsigned long addr) { return 0; }
  1988. static inline int in_gate_area(struct mm_struct *mm, unsigned long addr)
  1989. {
  1990. return 0;
  1991. }
  1992. #endif /* __HAVE_ARCH_GATE_AREA */
  1993. extern bool process_shares_mm(struct task_struct *p, struct mm_struct *mm);
  1994. #ifdef CONFIG_SYSCTL
  1995. extern int sysctl_drop_caches;
  1996. int drop_caches_sysctl_handler(struct ctl_table *, int,
  1997. void __user *, size_t *, loff_t *);
  1998. #endif
  1999. void drop_slab(void);
  2000. void drop_slab_node(int nid);
  2001. #ifndef CONFIG_MMU
  2002. #define randomize_va_space 0
  2003. #else
  2004. extern int randomize_va_space;
  2005. #endif
  2006. const char * arch_vma_name(struct vm_area_struct *vma);
  2007. void print_vma_addr(char *prefix, unsigned long rip);
  2008. void sparse_mem_maps_populate_node(struct page **map_map,
  2009. unsigned long pnum_begin,
  2010. unsigned long pnum_end,
  2011. unsigned long map_count,
  2012. int nodeid);
  2013. struct page *sparse_mem_map_populate(unsigned long pnum, int nid);
  2014. pgd_t *vmemmap_pgd_populate(unsigned long addr, int node);
  2015. pud_t *vmemmap_pud_populate(pgd_t *pgd, unsigned long addr, int node);
  2016. pmd_t *vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node);
  2017. pte_t *vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node);
  2018. void *vmemmap_alloc_block(unsigned long size, int node);
  2019. struct vmem_altmap;
  2020. void *__vmemmap_alloc_block_buf(unsigned long size, int node,
  2021. struct vmem_altmap *altmap);
  2022. static inline void *vmemmap_alloc_block_buf(unsigned long size, int node)
  2023. {
  2024. return __vmemmap_alloc_block_buf(size, node, NULL);
  2025. }
  2026. void vmemmap_verify(pte_t *, int, unsigned long, unsigned long);
  2027. int vmemmap_populate_basepages(unsigned long start, unsigned long end,
  2028. int node);
  2029. int vmemmap_populate(unsigned long start, unsigned long end, int node);
  2030. void vmemmap_populate_print_last(void);
  2031. #ifdef CONFIG_MEMORY_HOTPLUG
  2032. void vmemmap_free(unsigned long start, unsigned long end);
  2033. #endif
  2034. void register_page_bootmem_memmap(unsigned long section_nr, struct page *map,
  2035. unsigned long size);
  2036. enum mf_flags {
  2037. MF_COUNT_INCREASED = 1 << 0,
  2038. MF_ACTION_REQUIRED = 1 << 1,
  2039. MF_MUST_KILL = 1 << 2,
  2040. MF_SOFT_OFFLINE = 1 << 3,
  2041. };
  2042. extern int memory_failure(unsigned long pfn, int trapno, int flags);
  2043. extern void memory_failure_queue(unsigned long pfn, int trapno, int flags);
  2044. extern int unpoison_memory(unsigned long pfn);
  2045. extern int get_hwpoison_page(struct page *page);
  2046. #define put_hwpoison_page(page) put_page(page)
  2047. extern int sysctl_memory_failure_early_kill;
  2048. extern int sysctl_memory_failure_recovery;
  2049. extern void shake_page(struct page *p, int access);
  2050. extern atomic_long_t num_poisoned_pages;
  2051. extern int soft_offline_page(struct page *page, int flags);
  2052. /*
  2053. * Error handlers for various types of pages.
  2054. */
  2055. enum mf_result {
  2056. MF_IGNORED, /* Error: cannot be handled */
  2057. MF_FAILED, /* Error: handling failed */
  2058. MF_DELAYED, /* Will be handled later */
  2059. MF_RECOVERED, /* Successfully recovered */
  2060. };
  2061. enum mf_action_page_type {
  2062. MF_MSG_KERNEL,
  2063. MF_MSG_KERNEL_HIGH_ORDER,
  2064. MF_MSG_SLAB,
  2065. MF_MSG_DIFFERENT_COMPOUND,
  2066. MF_MSG_POISONED_HUGE,
  2067. MF_MSG_HUGE,
  2068. MF_MSG_FREE_HUGE,
  2069. MF_MSG_UNMAP_FAILED,
  2070. MF_MSG_DIRTY_SWAPCACHE,
  2071. MF_MSG_CLEAN_SWAPCACHE,
  2072. MF_MSG_DIRTY_MLOCKED_LRU,
  2073. MF_MSG_CLEAN_MLOCKED_LRU,
  2074. MF_MSG_DIRTY_UNEVICTABLE_LRU,
  2075. MF_MSG_CLEAN_UNEVICTABLE_LRU,
  2076. MF_MSG_DIRTY_LRU,
  2077. MF_MSG_CLEAN_LRU,
  2078. MF_MSG_TRUNCATED_LRU,
  2079. MF_MSG_BUDDY,
  2080. MF_MSG_BUDDY_2ND,
  2081. MF_MSG_UNKNOWN,
  2082. };
  2083. #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
  2084. extern void clear_huge_page(struct page *page,
  2085. unsigned long addr,
  2086. unsigned int pages_per_huge_page);
  2087. extern void copy_user_huge_page(struct page *dst, struct page *src,
  2088. unsigned long addr, struct vm_area_struct *vma,
  2089. unsigned int pages_per_huge_page);
  2090. extern long copy_huge_page_from_user(struct page *dst_page,
  2091. const void __user *usr_src,
  2092. unsigned int pages_per_huge_page,
  2093. bool allow_pagefault);
  2094. #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
  2095. extern struct page_ext_operations debug_guardpage_ops;
  2096. extern struct page_ext_operations page_poisoning_ops;
  2097. #ifdef CONFIG_DEBUG_PAGEALLOC
  2098. extern unsigned int _debug_guardpage_minorder;
  2099. extern bool _debug_guardpage_enabled;
  2100. static inline unsigned int debug_guardpage_minorder(void)
  2101. {
  2102. return _debug_guardpage_minorder;
  2103. }
  2104. static inline bool debug_guardpage_enabled(void)
  2105. {
  2106. return _debug_guardpage_enabled;
  2107. }
  2108. static inline bool page_is_guard(struct page *page)
  2109. {
  2110. struct page_ext *page_ext;
  2111. if (!debug_guardpage_enabled())
  2112. return false;
  2113. page_ext = lookup_page_ext(page);
  2114. if (unlikely(!page_ext))
  2115. return false;
  2116. return test_bit(PAGE_EXT_DEBUG_GUARD, &page_ext->flags);
  2117. }
  2118. #else
  2119. static inline unsigned int debug_guardpage_minorder(void) { return 0; }
  2120. static inline bool debug_guardpage_enabled(void) { return false; }
  2121. static inline bool page_is_guard(struct page *page) { return false; }
  2122. #endif /* CONFIG_DEBUG_PAGEALLOC */
  2123. #if MAX_NUMNODES > 1
  2124. void __init setup_nr_node_ids(void);
  2125. #else
  2126. static inline void setup_nr_node_ids(void) {}
  2127. #endif
  2128. #endif /* __KERNEL__ */
  2129. #endif /* _LINUX_MM_H */