hugetlb.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_HUGETLB_H
  3. #define _LINUX_HUGETLB_H
  4. #include <linux/mm_types.h>
  5. #include <linux/mmdebug.h>
  6. #include <linux/fs.h>
  7. #include <linux/hugetlb_inline.h>
  8. #include <linux/cgroup.h>
  9. #include <linux/list.h>
  10. #include <linux/kref.h>
  11. #include <asm/pgtable.h>
  12. struct ctl_table;
  13. struct user_struct;
  14. struct mmu_gather;
  15. #ifndef is_hugepd
  16. /*
  17. * Some architectures requires a hugepage directory format that is
  18. * required to support multiple hugepage sizes. For example
  19. * a4fe3ce76 "powerpc/mm: Allow more flexible layouts for hugepage pagetables"
  20. * introduced the same on powerpc. This allows for a more flexible hugepage
  21. * pagetable layout.
  22. */
  23. typedef struct { unsigned long pd; } hugepd_t;
  24. #define is_hugepd(hugepd) (0)
  25. #define __hugepd(x) ((hugepd_t) { (x) })
  26. static inline int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
  27. unsigned pdshift, unsigned long end,
  28. int write, struct page **pages, int *nr)
  29. {
  30. return 0;
  31. }
  32. #else
  33. extern int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
  34. unsigned pdshift, unsigned long end,
  35. int write, struct page **pages, int *nr);
  36. #endif
  37. #ifdef CONFIG_HUGETLB_PAGE
  38. #include <linux/mempolicy.h>
  39. #include <linux/shm.h>
  40. #include <asm/tlbflush.h>
  41. struct hugepage_subpool {
  42. spinlock_t lock;
  43. long count;
  44. long max_hpages; /* Maximum huge pages or -1 if no maximum. */
  45. long used_hpages; /* Used count against maximum, includes */
  46. /* both alloced and reserved pages. */
  47. struct hstate *hstate;
  48. long min_hpages; /* Minimum huge pages or -1 if no minimum. */
  49. long rsv_hpages; /* Pages reserved against global pool to */
  50. /* sasitfy minimum size. */
  51. };
  52. struct resv_map {
  53. struct kref refs;
  54. spinlock_t lock;
  55. struct list_head regions;
  56. long adds_in_progress;
  57. struct list_head region_cache;
  58. long region_cache_count;
  59. };
  60. extern struct resv_map *resv_map_alloc(void);
  61. void resv_map_release(struct kref *ref);
  62. extern spinlock_t hugetlb_lock;
  63. extern int hugetlb_max_hstate __read_mostly;
  64. #define for_each_hstate(h) \
  65. for ((h) = hstates; (h) < &hstates[hugetlb_max_hstate]; (h)++)
  66. struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
  67. long min_hpages);
  68. void hugepage_put_subpool(struct hugepage_subpool *spool);
  69. void reset_vma_resv_huge_pages(struct vm_area_struct *vma);
  70. int hugetlb_sysctl_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
  71. int hugetlb_overcommit_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
  72. int hugetlb_treat_movable_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
  73. #ifdef CONFIG_NUMA
  74. int hugetlb_mempolicy_sysctl_handler(struct ctl_table *, int,
  75. void __user *, size_t *, loff_t *);
  76. #endif
  77. int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *);
  78. long follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *,
  79. struct page **, struct vm_area_struct **,
  80. unsigned long *, unsigned long *, long, unsigned int,
  81. int *);
  82. void unmap_hugepage_range(struct vm_area_struct *,
  83. unsigned long, unsigned long, struct page *);
  84. void __unmap_hugepage_range_final(struct mmu_gather *tlb,
  85. struct vm_area_struct *vma,
  86. unsigned long start, unsigned long end,
  87. struct page *ref_page);
  88. void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
  89. unsigned long start, unsigned long end,
  90. struct page *ref_page);
  91. void hugetlb_report_meminfo(struct seq_file *);
  92. int hugetlb_report_node_meminfo(int, char *);
  93. void hugetlb_show_meminfo(void);
  94. unsigned long hugetlb_total_pages(void);
  95. int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  96. unsigned long address, unsigned int flags);
  97. int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm, pte_t *dst_pte,
  98. struct vm_area_struct *dst_vma,
  99. unsigned long dst_addr,
  100. unsigned long src_addr,
  101. struct page **pagep);
  102. int hugetlb_reserve_pages(struct inode *inode, long from, long to,
  103. struct vm_area_struct *vma,
  104. vm_flags_t vm_flags);
  105. long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
  106. long freed);
  107. bool isolate_huge_page(struct page *page, struct list_head *list);
  108. void putback_active_hugepage(struct page *page);
  109. void free_huge_page(struct page *page);
  110. void hugetlb_fix_reserve_counts(struct inode *inode);
  111. extern struct mutex *hugetlb_fault_mutex_table;
  112. u32 hugetlb_fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
  113. struct vm_area_struct *vma,
  114. struct address_space *mapping,
  115. pgoff_t idx, unsigned long address);
  116. pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud);
  117. extern int hugepages_treat_as_movable;
  118. extern int sysctl_hugetlb_shm_group;
  119. extern struct list_head huge_boot_pages;
  120. /* arch callbacks */
  121. pte_t *huge_pte_alloc(struct mm_struct *mm,
  122. unsigned long addr, unsigned long sz);
  123. pte_t *huge_pte_offset(struct mm_struct *mm,
  124. unsigned long addr, unsigned long sz);
  125. int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep);
  126. struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address,
  127. int write);
  128. struct page *follow_huge_pd(struct vm_area_struct *vma,
  129. unsigned long address, hugepd_t hpd,
  130. int flags, int pdshift);
  131. struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address,
  132. pmd_t *pmd, int flags);
  133. struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address,
  134. pud_t *pud, int flags);
  135. struct page *follow_huge_pgd(struct mm_struct *mm, unsigned long address,
  136. pgd_t *pgd, int flags);
  137. int pmd_huge(pmd_t pmd);
  138. int pud_huge(pud_t pud);
  139. unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
  140. unsigned long address, unsigned long end, pgprot_t newprot);
  141. bool is_hugetlb_entry_migration(pte_t pte);
  142. #else /* !CONFIG_HUGETLB_PAGE */
  143. static inline void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
  144. {
  145. }
  146. static inline unsigned long hugetlb_total_pages(void)
  147. {
  148. return 0;
  149. }
  150. #define follow_hugetlb_page(m,v,p,vs,a,b,i,w,n) ({ BUG(); 0; })
  151. #define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL)
  152. #define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; })
  153. static inline void hugetlb_report_meminfo(struct seq_file *m)
  154. {
  155. }
  156. #define hugetlb_report_node_meminfo(n, buf) 0
  157. static inline void hugetlb_show_meminfo(void)
  158. {
  159. }
  160. #define follow_huge_pd(vma, addr, hpd, flags, pdshift) NULL
  161. #define follow_huge_pmd(mm, addr, pmd, flags) NULL
  162. #define follow_huge_pud(mm, addr, pud, flags) NULL
  163. #define follow_huge_pgd(mm, addr, pgd, flags) NULL
  164. #define prepare_hugepage_range(file, addr, len) (-EINVAL)
  165. #define pmd_huge(x) 0
  166. #define pud_huge(x) 0
  167. #define is_hugepage_only_range(mm, addr, len) 0
  168. #define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) ({BUG(); 0; })
  169. #define hugetlb_fault(mm, vma, addr, flags) ({ BUG(); 0; })
  170. #define hugetlb_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma, dst_addr, \
  171. src_addr, pagep) ({ BUG(); 0; })
  172. #define huge_pte_offset(mm, address, sz) 0
  173. static inline bool isolate_huge_page(struct page *page, struct list_head *list)
  174. {
  175. return false;
  176. }
  177. #define putback_active_hugepage(p) do {} while (0)
  178. static inline unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
  179. unsigned long address, unsigned long end, pgprot_t newprot)
  180. {
  181. return 0;
  182. }
  183. static inline void __unmap_hugepage_range_final(struct mmu_gather *tlb,
  184. struct vm_area_struct *vma, unsigned long start,
  185. unsigned long end, struct page *ref_page)
  186. {
  187. BUG();
  188. }
  189. static inline void __unmap_hugepage_range(struct mmu_gather *tlb,
  190. struct vm_area_struct *vma, unsigned long start,
  191. unsigned long end, struct page *ref_page)
  192. {
  193. BUG();
  194. }
  195. #endif /* !CONFIG_HUGETLB_PAGE */
  196. /*
  197. * hugepages at page global directory. If arch support
  198. * hugepages at pgd level, they need to define this.
  199. */
  200. #ifndef pgd_huge
  201. #define pgd_huge(x) 0
  202. #endif
  203. #ifndef p4d_huge
  204. #define p4d_huge(x) 0
  205. #endif
  206. #ifndef pgd_write
  207. static inline int pgd_write(pgd_t pgd)
  208. {
  209. BUG();
  210. return 0;
  211. }
  212. #endif
  213. #define HUGETLB_ANON_FILE "anon_hugepage"
  214. enum {
  215. /*
  216. * The file will be used as an shm file so shmfs accounting rules
  217. * apply
  218. */
  219. HUGETLB_SHMFS_INODE = 1,
  220. /*
  221. * The file is being created on the internal vfs mount and shmfs
  222. * accounting rules do not apply
  223. */
  224. HUGETLB_ANONHUGE_INODE = 2,
  225. };
  226. #ifdef CONFIG_HUGETLBFS
  227. struct hugetlbfs_sb_info {
  228. long max_inodes; /* inodes allowed */
  229. long free_inodes; /* inodes free */
  230. spinlock_t stat_lock;
  231. struct hstate *hstate;
  232. struct hugepage_subpool *spool;
  233. kuid_t uid;
  234. kgid_t gid;
  235. umode_t mode;
  236. };
  237. static inline struct hugetlbfs_sb_info *HUGETLBFS_SB(struct super_block *sb)
  238. {
  239. return sb->s_fs_info;
  240. }
  241. extern const struct file_operations hugetlbfs_file_operations;
  242. extern const struct vm_operations_struct hugetlb_vm_ops;
  243. struct file *hugetlb_file_setup(const char *name, size_t size, vm_flags_t acct,
  244. struct user_struct **user, int creat_flags,
  245. int page_size_log);
  246. static inline bool is_file_hugepages(struct file *file)
  247. {
  248. if (file->f_op == &hugetlbfs_file_operations)
  249. return true;
  250. return is_file_shm_hugepages(file);
  251. }
  252. #else /* !CONFIG_HUGETLBFS */
  253. #define is_file_hugepages(file) false
  254. static inline struct file *
  255. hugetlb_file_setup(const char *name, size_t size, vm_flags_t acctflag,
  256. struct user_struct **user, int creat_flags,
  257. int page_size_log)
  258. {
  259. return ERR_PTR(-ENOSYS);
  260. }
  261. #endif /* !CONFIG_HUGETLBFS */
  262. #ifdef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
  263. unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
  264. unsigned long len, unsigned long pgoff,
  265. unsigned long flags);
  266. #endif /* HAVE_ARCH_HUGETLB_UNMAPPED_AREA */
  267. #ifdef CONFIG_HUGETLB_PAGE
  268. #define HSTATE_NAME_LEN 32
  269. /* Defines one hugetlb page size */
  270. struct hstate {
  271. int next_nid_to_alloc;
  272. int next_nid_to_free;
  273. unsigned int order;
  274. unsigned long mask;
  275. unsigned long max_huge_pages;
  276. unsigned long nr_huge_pages;
  277. unsigned long free_huge_pages;
  278. unsigned long resv_huge_pages;
  279. unsigned long surplus_huge_pages;
  280. unsigned long nr_overcommit_huge_pages;
  281. struct list_head hugepage_activelist;
  282. struct list_head hugepage_freelists[MAX_NUMNODES];
  283. unsigned int nr_huge_pages_node[MAX_NUMNODES];
  284. unsigned int free_huge_pages_node[MAX_NUMNODES];
  285. unsigned int surplus_huge_pages_node[MAX_NUMNODES];
  286. #ifdef CONFIG_CGROUP_HUGETLB
  287. /* cgroup control files */
  288. struct cftype cgroup_files[5];
  289. #endif
  290. char name[HSTATE_NAME_LEN];
  291. };
  292. struct huge_bootmem_page {
  293. struct list_head list;
  294. struct hstate *hstate;
  295. #ifdef CONFIG_HIGHMEM
  296. phys_addr_t phys;
  297. #endif
  298. };
  299. struct page *alloc_huge_page(struct vm_area_struct *vma,
  300. unsigned long addr, int avoid_reserve);
  301. struct page *alloc_huge_page_node(struct hstate *h, int nid);
  302. struct page *alloc_huge_page_noerr(struct vm_area_struct *vma,
  303. unsigned long addr, int avoid_reserve);
  304. struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
  305. nodemask_t *nmask);
  306. int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
  307. pgoff_t idx);
  308. /* arch callback */
  309. int __init __alloc_bootmem_huge_page(struct hstate *h);
  310. int __init alloc_bootmem_huge_page(struct hstate *h);
  311. void __init hugetlb_bad_size(void);
  312. void __init hugetlb_add_hstate(unsigned order);
  313. struct hstate *size_to_hstate(unsigned long size);
  314. #ifndef HUGE_MAX_HSTATE
  315. #define HUGE_MAX_HSTATE 1
  316. #endif
  317. extern struct hstate hstates[HUGE_MAX_HSTATE];
  318. extern unsigned int default_hstate_idx;
  319. #define default_hstate (hstates[default_hstate_idx])
  320. static inline struct hstate *hstate_inode(struct inode *i)
  321. {
  322. return HUGETLBFS_SB(i->i_sb)->hstate;
  323. }
  324. static inline struct hstate *hstate_file(struct file *f)
  325. {
  326. return hstate_inode(file_inode(f));
  327. }
  328. static inline struct hstate *hstate_sizelog(int page_size_log)
  329. {
  330. if (!page_size_log)
  331. return &default_hstate;
  332. return size_to_hstate(1UL << page_size_log);
  333. }
  334. static inline struct hstate *hstate_vma(struct vm_area_struct *vma)
  335. {
  336. return hstate_file(vma->vm_file);
  337. }
  338. static inline unsigned long huge_page_size(struct hstate *h)
  339. {
  340. return (unsigned long)PAGE_SIZE << h->order;
  341. }
  342. extern unsigned long vma_kernel_pagesize(struct vm_area_struct *vma);
  343. extern unsigned long vma_mmu_pagesize(struct vm_area_struct *vma);
  344. static inline unsigned long huge_page_mask(struct hstate *h)
  345. {
  346. return h->mask;
  347. }
  348. static inline unsigned int huge_page_order(struct hstate *h)
  349. {
  350. return h->order;
  351. }
  352. static inline unsigned huge_page_shift(struct hstate *h)
  353. {
  354. return h->order + PAGE_SHIFT;
  355. }
  356. static inline bool hstate_is_gigantic(struct hstate *h)
  357. {
  358. return huge_page_order(h) >= MAX_ORDER;
  359. }
  360. static inline unsigned int pages_per_huge_page(struct hstate *h)
  361. {
  362. return 1 << h->order;
  363. }
  364. static inline unsigned int blocks_per_huge_page(struct hstate *h)
  365. {
  366. return huge_page_size(h) / 512;
  367. }
  368. #include <asm/hugetlb.h>
  369. #ifndef arch_make_huge_pte
  370. static inline pte_t arch_make_huge_pte(pte_t entry, struct vm_area_struct *vma,
  371. struct page *page, int writable)
  372. {
  373. return entry;
  374. }
  375. #endif
  376. static inline struct hstate *page_hstate(struct page *page)
  377. {
  378. VM_BUG_ON_PAGE(!PageHuge(page), page);
  379. return size_to_hstate(PAGE_SIZE << compound_order(page));
  380. }
  381. static inline unsigned hstate_index_to_shift(unsigned index)
  382. {
  383. return hstates[index].order + PAGE_SHIFT;
  384. }
  385. static inline int hstate_index(struct hstate *h)
  386. {
  387. return h - hstates;
  388. }
  389. pgoff_t __basepage_index(struct page *page);
  390. /* Return page->index in PAGE_SIZE units */
  391. static inline pgoff_t basepage_index(struct page *page)
  392. {
  393. if (!PageCompound(page))
  394. return page->index;
  395. return __basepage_index(page);
  396. }
  397. extern int dissolve_free_huge_page(struct page *page);
  398. extern int dissolve_free_huge_pages(unsigned long start_pfn,
  399. unsigned long end_pfn);
  400. static inline bool hugepage_migration_supported(struct hstate *h)
  401. {
  402. #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION
  403. if ((huge_page_shift(h) == PMD_SHIFT) ||
  404. (huge_page_shift(h) == PGDIR_SHIFT))
  405. return true;
  406. else
  407. return false;
  408. #else
  409. return false;
  410. #endif
  411. }
  412. static inline spinlock_t *huge_pte_lockptr(struct hstate *h,
  413. struct mm_struct *mm, pte_t *pte)
  414. {
  415. if (huge_page_size(h) == PMD_SIZE)
  416. return pmd_lockptr(mm, (pmd_t *) pte);
  417. VM_BUG_ON(huge_page_size(h) == PAGE_SIZE);
  418. return &mm->page_table_lock;
  419. }
  420. #ifndef hugepages_supported
  421. /*
  422. * Some platform decide whether they support huge pages at boot
  423. * time. Some of them, such as powerpc, set HPAGE_SHIFT to 0
  424. * when there is no such support
  425. */
  426. #define hugepages_supported() (HPAGE_SHIFT != 0)
  427. #endif
  428. void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm);
  429. static inline void hugetlb_count_add(long l, struct mm_struct *mm)
  430. {
  431. atomic_long_add(l, &mm->hugetlb_usage);
  432. }
  433. static inline void hugetlb_count_sub(long l, struct mm_struct *mm)
  434. {
  435. atomic_long_sub(l, &mm->hugetlb_usage);
  436. }
  437. #ifndef set_huge_swap_pte_at
  438. static inline void set_huge_swap_pte_at(struct mm_struct *mm, unsigned long addr,
  439. pte_t *ptep, pte_t pte, unsigned long sz)
  440. {
  441. set_huge_pte_at(mm, addr, ptep, pte);
  442. }
  443. #endif
  444. #else /* CONFIG_HUGETLB_PAGE */
  445. struct hstate {};
  446. #define alloc_huge_page(v, a, r) NULL
  447. #define alloc_huge_page_node(h, nid) NULL
  448. #define alloc_huge_page_nodemask(h, preferred_nid, nmask) NULL
  449. #define alloc_huge_page_noerr(v, a, r) NULL
  450. #define alloc_bootmem_huge_page(h) NULL
  451. #define hstate_file(f) NULL
  452. #define hstate_sizelog(s) NULL
  453. #define hstate_vma(v) NULL
  454. #define hstate_inode(i) NULL
  455. #define page_hstate(page) NULL
  456. #define huge_page_size(h) PAGE_SIZE
  457. #define huge_page_mask(h) PAGE_MASK
  458. #define vma_kernel_pagesize(v) PAGE_SIZE
  459. #define vma_mmu_pagesize(v) PAGE_SIZE
  460. #define huge_page_order(h) 0
  461. #define huge_page_shift(h) PAGE_SHIFT
  462. static inline bool hstate_is_gigantic(struct hstate *h)
  463. {
  464. return false;
  465. }
  466. static inline unsigned int pages_per_huge_page(struct hstate *h)
  467. {
  468. return 1;
  469. }
  470. static inline unsigned hstate_index_to_shift(unsigned index)
  471. {
  472. return 0;
  473. }
  474. static inline int hstate_index(struct hstate *h)
  475. {
  476. return 0;
  477. }
  478. static inline pgoff_t basepage_index(struct page *page)
  479. {
  480. return page->index;
  481. }
  482. static inline int dissolve_free_huge_page(struct page *page)
  483. {
  484. return 0;
  485. }
  486. static inline int dissolve_free_huge_pages(unsigned long start_pfn,
  487. unsigned long end_pfn)
  488. {
  489. return 0;
  490. }
  491. static inline bool hugepage_migration_supported(struct hstate *h)
  492. {
  493. return false;
  494. }
  495. static inline spinlock_t *huge_pte_lockptr(struct hstate *h,
  496. struct mm_struct *mm, pte_t *pte)
  497. {
  498. return &mm->page_table_lock;
  499. }
  500. static inline void hugetlb_report_usage(struct seq_file *f, struct mm_struct *m)
  501. {
  502. }
  503. static inline void hugetlb_count_sub(long l, struct mm_struct *mm)
  504. {
  505. }
  506. static inline void set_huge_swap_pte_at(struct mm_struct *mm, unsigned long addr,
  507. pte_t *ptep, pte_t pte, unsigned long sz)
  508. {
  509. }
  510. #endif /* CONFIG_HUGETLB_PAGE */
  511. static inline spinlock_t *huge_pte_lock(struct hstate *h,
  512. struct mm_struct *mm, pte_t *pte)
  513. {
  514. spinlock_t *ptl;
  515. ptl = huge_pte_lockptr(h, mm, pte);
  516. spin_lock(ptl);
  517. return ptl;
  518. }
  519. #endif /* _LINUX_HUGETLB_H */