mm.h 86 KB

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