mm.h 86 KB

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