blob: 943c76b3d4bb94d9536ecf8e324bea8ffda853e4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_HUGETLB_H
2#define _LINUX_HUGETLB_H
3
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04004#include <linux/fs.h>
Naoya Horiguchi8edf3442010-05-28 09:29:15 +09005#include <linux/hugetlb_inline.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04006
Andrew Mortone9ea0e22009-09-24 14:47:45 -07007struct ctl_table;
8struct user_struct;
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#ifdef CONFIG_HUGETLB_PAGE
11
12#include <linux/mempolicy.h>
Adam Litke516dffd2007-03-01 15:46:08 -080013#include <linux/shm.h>
David Gibson63551ae2005-06-21 17:14:44 -070014#include <asm/tlbflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Wu Fengguang20a03072009-06-16 15:32:22 -070016int PageHuge(struct page *page);
17
Mel Gormana1e78772008-07-23 21:27:23 -070018void reset_vma_resv_huge_pages(struct vm_area_struct *vma);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070019int hugetlb_sysctl_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
20int hugetlb_overcommit_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
21int hugetlb_treat_movable_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *);
Lee Schermerhorn06808b02009-12-14 17:58:21 -080022
23#ifdef CONFIG_NUMA
24int hugetlb_mempolicy_sysctl_handler(struct ctl_table *, int,
25 void __user *, size_t *, loff_t *);
26#endif
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *);
Hugh Dickins2a15efc2009-09-21 17:03:27 -070029int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *,
30 struct page **, struct vm_area_struct **,
31 unsigned long *, int *, int, unsigned int flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -070032void unmap_hugepage_range(struct vm_area_struct *,
33 unsigned long, unsigned long, struct page *);
34void __unmap_hugepage_range(struct vm_area_struct *,
35 unsigned long, unsigned long, struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036int hugetlb_prefault(struct address_space *, struct vm_area_struct *);
Alexey Dobriyane1759c22008-10-15 23:50:22 +040037void hugetlb_report_meminfo(struct seq_file *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038int hugetlb_report_node_meminfo(int, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039unsigned long hugetlb_total_pages(void);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +010040int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +010041 unsigned long address, unsigned int flags);
Mel Gormana1e78772008-07-23 21:27:23 -070042int hugetlb_reserve_pages(struct inode *inode, long from, long to,
Mel Gorman5a6fe122009-02-10 14:02:27 +000043 struct vm_area_struct *vma,
44 int acctflags);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -070045void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed);
Naoya Horiguchi6de2b1a2010-09-08 10:19:36 +090046int dequeue_hwpoisoned_huge_page(struct page *page);
Naoya Horiguchi0ebabb42010-09-08 10:19:34 +090047void copy_huge_page(struct page *dst, struct page *src);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Mel Gorman396faf02007-07-17 04:03:13 -070049extern unsigned long hugepages_treat_as_movable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern const unsigned long hugetlb_zero, hugetlb_infinity;
51extern int sysctl_hugetlb_shm_group;
Jon Tollefson53ba51d2008-07-23 21:27:52 -070052extern struct list_head huge_boot_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David Gibson63551ae2005-06-21 17:14:44 -070054/* arch callbacks */
55
Andi Kleena5516432008-07-23 21:27:41 -070056pte_t *huge_pte_alloc(struct mm_struct *mm,
57 unsigned long addr, unsigned long sz);
David Gibson63551ae2005-06-21 17:14:44 -070058pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr);
Chen, Kenneth W39dde652006-12-06 20:32:03 -080059int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep);
David Gibson63551ae2005-06-21 17:14:44 -070060struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address,
61 int write);
62struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address,
63 pmd_t *pmd, int write);
Andi Kleenceb86872008-07-23 21:27:50 -070064struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address,
65 pud_t *pud, int write);
David Gibson63551ae2005-06-21 17:14:44 -070066int pmd_huge(pmd_t pmd);
Andi Kleenceb86872008-07-23 21:27:50 -070067int pud_huge(pud_t pmd);
Zhang, Yanmin8f860592006-03-22 00:08:50 -080068void hugetlb_change_protection(struct vm_area_struct *vma,
69 unsigned long address, unsigned long end, pgprot_t newprot);
David Gibson63551ae2005-06-21 17:14:44 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#else /* !CONFIG_HUGETLB_PAGE */
72
Wu Fengguang20a03072009-06-16 15:32:22 -070073static inline int PageHuge(struct page *page)
74{
75 return 0;
76}
77
Mel Gormana1e78772008-07-23 21:27:23 -070078static inline void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
79{
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static inline unsigned long hugetlb_total_pages(void)
83{
84 return 0;
85}
86
Adam Litke5b23dbe2007-11-14 16:59:33 -080087#define follow_hugetlb_page(m,v,p,vs,a,b,i,w) ({ BUG(); 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL)
89#define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; })
90#define hugetlb_prefault(mapping, vma) ({ BUG(); 0; })
Mel Gorman04f2cbe2008-07-23 21:27:25 -070091#define unmap_hugepage_range(vma, start, end, page) BUG()
Alexey Dobriyane1759c22008-10-15 23:50:22 +040092static inline void hugetlb_report_meminfo(struct seq_file *m)
93{
94}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define hugetlb_report_node_meminfo(n, buf) 0
96#define follow_huge_pmd(mm, addr, pmd, write) NULL
Andi Kleenceb86872008-07-23 21:27:50 -070097#define follow_huge_pud(mm, addr, pud, write) NULL
Andi Kleena5516432008-07-23 21:27:41 -070098#define prepare_hugepage_range(file, addr, len) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define pmd_huge(x) 0
Andi Kleenceb86872008-07-23 21:27:50 -0700100#define pud_huge(x) 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define is_hugepage_only_range(mm, addr, len) 0
David Gibson9da61ae2006-03-22 00:08:57 -0800102#define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) ({BUG(); 0; })
Hugh Dickins788c7df2009-06-23 13:49:05 +0100103#define hugetlb_fault(mm, vma, addr, flags) ({ BUG(); 0; })
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900104#define huge_pte_offset(mm, address) 0
Naoya Horiguchi6de2b1a2010-09-08 10:19:36 +0900105#define dequeue_hwpoisoned_huge_page(page) 0
Naoya Horiguchi0ebabb42010-09-08 10:19:34 +0900106static inline void copy_huge_page(struct page *dst, struct page *src)
107{
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Zhang, Yanmin8f860592006-03-22 00:08:50 -0800110#define hugetlb_change_protection(vma, address, end, newprot)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#ifndef HPAGE_MASK
Robin Holt51c6f662005-11-13 16:06:42 -0800113#define HPAGE_MASK PAGE_MASK /* Keep the compiler happy */
114#define HPAGE_SIZE PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif
116
117#endif /* !CONFIG_HUGETLB_PAGE */
118
Eric B Munson4e527802009-09-21 17:03:47 -0700119#define HUGETLB_ANON_FILE "anon_hugepage"
120
Eric B Munson6bfde052009-09-21 17:03:43 -0700121enum {
122 /*
123 * The file will be used as an shm file so shmfs accounting rules
124 * apply
125 */
126 HUGETLB_SHMFS_INODE = 1,
Eric B Munson4e527802009-09-21 17:03:47 -0700127 /*
128 * The file is being created on the internal vfs mount and shmfs
129 * accounting rules do not apply
130 */
131 HUGETLB_ANONHUGE_INODE = 2,
Eric B Munson6bfde052009-09-21 17:03:43 -0700132};
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#ifdef CONFIG_HUGETLBFS
135struct hugetlbfs_config {
136 uid_t uid;
137 gid_t gid;
138 umode_t mode;
139 long nr_blocks;
140 long nr_inodes;
Andi Kleena137e1c2008-07-23 21:27:43 -0700141 struct hstate *hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144struct hugetlbfs_sb_info {
145 long max_blocks; /* blocks allowed */
146 long free_blocks; /* blocks free */
147 long max_inodes; /* inodes allowed */
148 long free_inodes; /* inodes free */
149 spinlock_t stat_lock;
Andi Kleena137e1c2008-07-23 21:27:43 -0700150 struct hstate *hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153
154struct hugetlbfs_inode_info {
155 struct shared_policy policy;
156 struct inode vfs_inode;
157};
158
159static inline struct hugetlbfs_inode_info *HUGETLBFS_I(struct inode *inode)
160{
161 return container_of(inode, struct hugetlbfs_inode_info, vfs_inode);
162}
163
164static inline struct hugetlbfs_sb_info *HUGETLBFS_SB(struct super_block *sb)
165{
166 return sb->s_fs_info;
167}
168
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800169extern const struct file_operations hugetlbfs_file_operations;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400170extern const struct vm_operations_struct hugetlb_vm_ops;
Hugh Dickins353d5c32009-08-24 16:30:28 +0100171struct file *hugetlb_file_setup(const char *name, size_t size, int acct,
Eric B Munson6bfde052009-09-21 17:03:43 -0700172 struct user_struct **user, int creat_flags);
Adam Litke9a119c02007-11-14 16:59:41 -0800173int hugetlb_get_quota(struct address_space *mapping, long delta);
174void hugetlb_put_quota(struct address_space *mapping, long delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176static inline int is_file_hugepages(struct file *file)
177{
Adam Litke516dffd2007-03-01 15:46:08 -0800178 if (file->f_op == &hugetlbfs_file_operations)
179 return 1;
180 if (is_file_shm_hugepages(file))
181 return 1;
182
183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186static inline void set_file_hugepages(struct file *file)
187{
188 file->f_op = &hugetlbfs_file_operations;
189}
190#else /* !CONFIG_HUGETLBFS */
191
Stefan Richter1db85082009-02-10 23:27:32 +0100192#define is_file_hugepages(file) 0
193#define set_file_hugepages(file) BUG()
Andrew Mortone9ea0e22009-09-24 14:47:45 -0700194static inline struct file *hugetlb_file_setup(const char *name, size_t size,
195 int acctflag, struct user_struct **user, int creat_flags)
196{
197 return ERR_PTR(-ENOSYS);
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200#endif /* !CONFIG_HUGETLBFS */
201
Adrian Bunkd2ba27e82007-05-06 14:49:00 -0700202#ifdef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
203unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
204 unsigned long len, unsigned long pgoff,
205 unsigned long flags);
206#endif /* HAVE_ARCH_HUGETLB_UNMAPPED_AREA */
207
Andi Kleena5516432008-07-23 21:27:41 -0700208#ifdef CONFIG_HUGETLB_PAGE
209
Nishanth Aravamudana3437872008-07-23 21:27:44 -0700210#define HSTATE_NAME_LEN 32
Andi Kleena5516432008-07-23 21:27:41 -0700211/* Defines one hugetlb page size */
212struct hstate {
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700213 int next_nid_to_alloc;
214 int next_nid_to_free;
Andi Kleena5516432008-07-23 21:27:41 -0700215 unsigned int order;
216 unsigned long mask;
217 unsigned long max_huge_pages;
218 unsigned long nr_huge_pages;
219 unsigned long free_huge_pages;
220 unsigned long resv_huge_pages;
221 unsigned long surplus_huge_pages;
222 unsigned long nr_overcommit_huge_pages;
223 struct list_head hugepage_freelists[MAX_NUMNODES];
224 unsigned int nr_huge_pages_node[MAX_NUMNODES];
225 unsigned int free_huge_pages_node[MAX_NUMNODES];
226 unsigned int surplus_huge_pages_node[MAX_NUMNODES];
Nishanth Aravamudana3437872008-07-23 21:27:44 -0700227 char name[HSTATE_NAME_LEN];
Andi Kleena5516432008-07-23 21:27:41 -0700228};
229
Jon Tollefson53ba51d2008-07-23 21:27:52 -0700230struct huge_bootmem_page {
231 struct list_head list;
232 struct hstate *hstate;
233};
234
Naoya Horiguchibf50bab2010-09-08 10:19:33 +0900235struct page *alloc_huge_page_node(struct hstate *h, int nid);
236
Jon Tollefson53ba51d2008-07-23 21:27:52 -0700237/* arch callback */
238int __init alloc_bootmem_huge_page(struct hstate *h);
239
Andi Kleene5ff2152008-07-23 21:27:42 -0700240void __init hugetlb_add_hstate(unsigned order);
241struct hstate *size_to_hstate(unsigned long size);
242
243#ifndef HUGE_MAX_HSTATE
244#define HUGE_MAX_HSTATE 1
245#endif
246
247extern struct hstate hstates[HUGE_MAX_HSTATE];
248extern unsigned int default_hstate_idx;
249
250#define default_hstate (hstates[default_hstate_idx])
Andi Kleena5516432008-07-23 21:27:41 -0700251
Andi Kleena137e1c2008-07-23 21:27:43 -0700252static inline struct hstate *hstate_inode(struct inode *i)
Andi Kleena5516432008-07-23 21:27:41 -0700253{
Andi Kleena137e1c2008-07-23 21:27:43 -0700254 struct hugetlbfs_sb_info *hsb;
255 hsb = HUGETLBFS_SB(i->i_sb);
256 return hsb->hstate;
Andi Kleena5516432008-07-23 21:27:41 -0700257}
258
259static inline struct hstate *hstate_file(struct file *f)
260{
Andi Kleena137e1c2008-07-23 21:27:43 -0700261 return hstate_inode(f->f_dentry->d_inode);
Andi Kleena5516432008-07-23 21:27:41 -0700262}
263
Andi Kleena137e1c2008-07-23 21:27:43 -0700264static inline struct hstate *hstate_vma(struct vm_area_struct *vma)
Andi Kleena5516432008-07-23 21:27:41 -0700265{
Andi Kleena137e1c2008-07-23 21:27:43 -0700266 return hstate_file(vma->vm_file);
Andi Kleena5516432008-07-23 21:27:41 -0700267}
268
269static inline unsigned long huge_page_size(struct hstate *h)
270{
271 return (unsigned long)PAGE_SIZE << h->order;
272}
273
Mel Gorman08fba692009-01-06 14:38:53 -0800274extern unsigned long vma_kernel_pagesize(struct vm_area_struct *vma);
275
Mel Gorman33402892009-01-06 14:38:54 -0800276extern unsigned long vma_mmu_pagesize(struct vm_area_struct *vma);
277
Andi Kleena5516432008-07-23 21:27:41 -0700278static inline unsigned long huge_page_mask(struct hstate *h)
279{
280 return h->mask;
281}
282
283static inline unsigned int huge_page_order(struct hstate *h)
284{
285 return h->order;
286}
287
288static inline unsigned huge_page_shift(struct hstate *h)
289{
290 return h->order + PAGE_SHIFT;
291}
292
293static inline unsigned int pages_per_huge_page(struct hstate *h)
294{
295 return 1 << h->order;
296}
297
298static inline unsigned int blocks_per_huge_page(struct hstate *h)
299{
300 return huge_page_size(h) / 512;
301}
302
303#include <asm/hugetlb.h>
304
Andi Kleene5ff2152008-07-23 21:27:42 -0700305static inline struct hstate *page_hstate(struct page *page)
306{
307 return size_to_hstate(PAGE_SIZE << compound_order(page));
308}
309
Andi Kleenaa50d3a2010-10-06 21:45:00 +0200310static inline unsigned hstate_index_to_shift(unsigned index)
311{
312 return hstates[index].order + PAGE_SHIFT;
313}
314
Andi Kleena5516432008-07-23 21:27:41 -0700315#else
316struct hstate {};
Naoya Horiguchibf50bab2010-09-08 10:19:33 +0900317#define alloc_huge_page_node(h, nid) NULL
Jon Tollefson53ba51d2008-07-23 21:27:52 -0700318#define alloc_bootmem_huge_page(h) NULL
Andi Kleena5516432008-07-23 21:27:41 -0700319#define hstate_file(f) NULL
320#define hstate_vma(v) NULL
321#define hstate_inode(i) NULL
322#define huge_page_size(h) PAGE_SIZE
323#define huge_page_mask(h) PAGE_MASK
Mel Gorman08fba692009-01-06 14:38:53 -0800324#define vma_kernel_pagesize(v) PAGE_SIZE
Mel Gorman33402892009-01-06 14:38:54 -0800325#define vma_mmu_pagesize(v) PAGE_SIZE
Andi Kleena5516432008-07-23 21:27:41 -0700326#define huge_page_order(h) 0
327#define huge_page_shift(h) PAGE_SHIFT
Andrea Righi510a35d2008-07-26 15:22:27 -0700328static inline unsigned int pages_per_huge_page(struct hstate *h)
329{
330 return 1;
331}
Andi Kleenaa50d3a2010-10-06 21:45:00 +0200332#define hstate_index_to_shift(index) 0
Andi Kleena5516432008-07-23 21:27:41 -0700333#endif
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#endif /* _LINUX_HUGETLB_H */