Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
[linux-2.6.git] / arch / mips / mm / gup.c
blobd4ea5c9c4a93add70ec6e33b1efce8ab5b810c54
1 /*
2 * Lockless get_user_pages_fast for MIPS
4 * Copyright (C) 2008 Nick Piggin
5 * Copyright (C) 2008 Novell Inc.
6 * Copyright (C) 2011 Ralf Baechle
7 */
8 #include <linux/sched.h>
9 #include <linux/mm.h>
10 #include <linux/vmstat.h>
11 #include <linux/highmem.h>
12 #include <linux/swap.h>
13 #include <linux/hugetlb.h>
15 #include <asm/pgtable.h>
17 static inline pte_t gup_get_pte(pte_t *ptep)
19 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
20 pte_t pte;
22 retry:
23 pte.pte_low = ptep->pte_low;
24 smp_rmb();
25 pte.pte_high = ptep->pte_high;
26 smp_rmb();
27 if (unlikely(pte.pte_low != ptep->pte_low))
28 goto retry;
30 return pte;
31 #else
32 return ACCESS_ONCE(*ptep);
33 #endif
36 static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
37 int write, struct page **pages, int *nr)
39 pte_t *ptep = pte_offset_map(&pmd, addr);
40 do {
41 pte_t pte = gup_get_pte(ptep);
42 struct page *page;
44 if (!pte_present(pte) ||
45 pte_special(pte) || (write && !pte_write(pte))) {
46 pte_unmap(ptep);
47 return 0;
49 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
50 page = pte_page(pte);
51 get_page(page);
52 SetPageReferenced(page);
53 pages[*nr] = page;
54 (*nr)++;
56 } while (ptep++, addr += PAGE_SIZE, addr != end);
58 pte_unmap(ptep - 1);
59 return 1;
62 static inline void get_head_page_multiple(struct page *page, int nr)
64 VM_BUG_ON(page != compound_head(page));
65 VM_BUG_ON(page_count(page) == 0);
66 atomic_add(nr, &page->_count);
67 SetPageReferenced(page);
70 static int gup_huge_pmd(pmd_t pmd, unsigned long addr, unsigned long end,
71 int write, struct page **pages, int *nr)
73 pte_t pte = *(pte_t *)&pmd;
74 struct page *head, *page;
75 int refs;
77 if (write && !pte_write(pte))
78 return 0;
79 /* hugepages are never "special" */
80 VM_BUG_ON(pte_special(pte));
81 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
83 refs = 0;
84 head = pte_page(pte);
85 page = head + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
86 do {
87 VM_BUG_ON(compound_head(page) != head);
88 pages[*nr] = page;
89 if (PageTail(page))
90 get_huge_page_tail(page);
91 (*nr)++;
92 page++;
93 refs++;
94 } while (addr += PAGE_SIZE, addr != end);
96 get_head_page_multiple(head, refs);
97 return 1;
100 static int gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end,
101 int write, struct page **pages, int *nr)
103 unsigned long next;
104 pmd_t *pmdp;
106 pmdp = pmd_offset(&pud, addr);
107 do {
108 pmd_t pmd = *pmdp;
110 next = pmd_addr_end(addr, end);
112 * The pmd_trans_splitting() check below explains why
113 * pmdp_splitting_flush has to flush the tlb, to stop
114 * this gup-fast code from running while we set the
115 * splitting bit in the pmd. Returning zero will take
116 * the slow path that will call wait_split_huge_page()
117 * if the pmd is still in splitting state. gup-fast
118 * can't because it has irq disabled and
119 * wait_split_huge_page() would never return as the
120 * tlb flush IPI wouldn't run.
122 if (pmd_none(pmd) || pmd_trans_splitting(pmd))
123 return 0;
124 if (unlikely(pmd_huge(pmd))) {
125 if (!gup_huge_pmd(pmd, addr, next, write, pages,nr))
126 return 0;
127 } else {
128 if (!gup_pte_range(pmd, addr, next, write, pages,nr))
129 return 0;
131 } while (pmdp++, addr = next, addr != end);
133 return 1;
136 static int gup_huge_pud(pud_t pud, unsigned long addr, unsigned long end,
137 int write, struct page **pages, int *nr)
139 pte_t pte = *(pte_t *)&pud;
140 struct page *head, *page;
141 int refs;
143 if (write && !pte_write(pte))
144 return 0;
145 /* hugepages are never "special" */
146 VM_BUG_ON(pte_special(pte));
147 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
149 refs = 0;
150 head = pte_page(pte);
151 page = head + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
152 do {
153 VM_BUG_ON(compound_head(page) != head);
154 pages[*nr] = page;
155 if (PageTail(page))
156 get_huge_page_tail(page);
157 (*nr)++;
158 page++;
159 refs++;
160 } while (addr += PAGE_SIZE, addr != end);
162 get_head_page_multiple(head, refs);
163 return 1;
166 static int gup_pud_range(pgd_t pgd, unsigned long addr, unsigned long end,
167 int write, struct page **pages, int *nr)
169 unsigned long next;
170 pud_t *pudp;
172 pudp = pud_offset(&pgd, addr);
173 do {
174 pud_t pud = *pudp;
176 next = pud_addr_end(addr, end);
177 if (pud_none(pud))
178 return 0;
179 if (unlikely(pud_huge(pud))) {
180 if (!gup_huge_pud(pud, addr, next, write, pages,nr))
181 return 0;
182 } else {
183 if (!gup_pmd_range(pud, addr, next, write, pages,nr))
184 return 0;
186 } while (pudp++, addr = next, addr != end);
188 return 1;
192 * Like get_user_pages_fast() except its IRQ-safe in that it won't fall
193 * back to the regular GUP.
195 int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
196 struct page **pages)
198 struct mm_struct *mm = current->mm;
199 unsigned long addr, len, end;
200 unsigned long next;
201 unsigned long flags;
202 pgd_t *pgdp;
203 int nr = 0;
205 start &= PAGE_MASK;
206 addr = start;
207 len = (unsigned long) nr_pages << PAGE_SHIFT;
208 end = start + len;
209 if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ,
210 (void __user *)start, len)))
211 return 0;
214 * XXX: batch / limit 'nr', to avoid large irq off latency
215 * needs some instrumenting to determine the common sizes used by
216 * important workloads (eg. DB2), and whether limiting the batch
217 * size will decrease performance.
219 * It seems like we're in the clear for the moment. Direct-IO is
220 * the main guy that batches up lots of get_user_pages, and even
221 * they are limited to 64-at-a-time which is not so many.
224 * This doesn't prevent pagetable teardown, but does prevent
225 * the pagetables and pages from being freed.
227 * So long as we atomically load page table pointers versus teardown,
228 * we can follow the address down to the page and take a ref on it.
230 local_irq_save(flags);
231 pgdp = pgd_offset(mm, addr);
232 do {
233 pgd_t pgd = *pgdp;
235 next = pgd_addr_end(addr, end);
236 if (pgd_none(pgd))
237 break;
238 if (!gup_pud_range(pgd, addr, next, write, pages, &nr))
239 break;
240 } while (pgdp++, addr = next, addr != end);
241 local_irq_restore(flags);
243 return nr;
247 * get_user_pages_fast() - pin user pages in memory
248 * @start: starting user address
249 * @nr_pages: number of pages from start to pin
250 * @write: whether pages will be written to
251 * @pages: array that receives pointers to the pages pinned.
252 * Should be at least nr_pages long.
254 * Attempt to pin user pages in memory without taking mm->mmap_sem.
255 * If not successful, it will fall back to taking the lock and
256 * calling get_user_pages().
258 * Returns number of pages pinned. This may be fewer than the number
259 * requested. If nr_pages is 0 or negative, returns 0. If no pages
260 * were pinned, returns -errno.
262 int get_user_pages_fast(unsigned long start, int nr_pages, int write,
263 struct page **pages)
265 struct mm_struct *mm = current->mm;
266 unsigned long addr, len, end;
267 unsigned long next;
268 pgd_t *pgdp;
269 int ret, nr = 0;
271 start &= PAGE_MASK;
272 addr = start;
273 len = (unsigned long) nr_pages << PAGE_SHIFT;
275 end = start + len;
276 if (end < start)
277 goto slow_irqon;
279 /* XXX: batch / limit 'nr' */
280 local_irq_disable();
281 pgdp = pgd_offset(mm, addr);
282 do {
283 pgd_t pgd = *pgdp;
285 next = pgd_addr_end(addr, end);
286 if (pgd_none(pgd))
287 goto slow;
288 if (!gup_pud_range(pgd, addr, next, write, pages, &nr))
289 goto slow;
290 } while (pgdp++, addr = next, addr != end);
291 local_irq_enable();
293 VM_BUG_ON(nr != (end - start) >> PAGE_SHIFT);
294 return nr;
295 slow:
296 local_irq_enable();
298 slow_irqon:
299 /* Try to get the remaining pages with get_user_pages */
300 start += nr << PAGE_SHIFT;
301 pages += nr;
303 down_read(&mm->mmap_sem);
304 ret = get_user_pages(current, mm, start,
305 (end - start) >> PAGE_SHIFT,
306 write, 0, pages, NULL);
307 up_read(&mm->mmap_sem);
309 /* Have to be a bit careful with return values */
310 if (nr > 0) {
311 if (ret < 0)
312 ret = nr;
313 else
314 ret += nr;
316 return ret;