blob: 20d5ad39fa411052a2f9554cf293b58ba926ddfd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Simple NUMA memory policy for the Linux kernel.
3 *
4 * Copyright 2003,2004 Andi Kleen, SuSE Labs.
Christoph Lameter8bccd852005-10-29 18:16:59 -07005 * (C) Copyright 2005 Christoph Lameter, Silicon Graphics, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Subject to the GNU Public License, version 2.
7 *
8 * NUMA policy allows the user to give hints in which node(s) memory should
9 * be allocated.
10 *
11 * Support four policies per VMA and per process:
12 *
13 * The VMA policy has priority over the process policy for a page fault.
14 *
15 * interleave Allocate memory interleaved over a set of nodes,
16 * with normal fallback if it fails.
17 * For VMA based allocations this interleaves based on the
18 * offset into the backing object or offset into the mapping
19 * for anonymous memory. For process policy an process counter
20 * is used.
Christoph Lameter8bccd852005-10-29 18:16:59 -070021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * bind Only allocate memory on a specific set of nodes,
23 * no fallback.
Christoph Lameter8bccd852005-10-29 18:16:59 -070024 * FIXME: memory is allocated starting with the first node
25 * to the last. It would be better if bind would truly restrict
26 * the allocation to memory nodes instead
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * preferred Try a specific node first before normal fallback.
29 * As a special case node -1 here means do the allocation
30 * on the local CPU. This is normally identical to default,
31 * but useful to set in a VMA when you have a non default
32 * process policy.
Christoph Lameter8bccd852005-10-29 18:16:59 -070033 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * default Allocate on the local node first, or when on a VMA
35 * use the process policy. This is what Linux always did
36 * in a NUMA aware kernel and still does by, ahem, default.
37 *
38 * The process policy is applied for most non interrupt memory allocations
39 * in that process' context. Interrupts ignore the policies and always
40 * try to allocate on the local CPU. The VMA policy is only applied for memory
41 * allocations for a VMA in the VM.
42 *
43 * Currently there are a few corner cases in swapping where the policy
44 * is not applied, but the majority should be handled. When process policy
45 * is used it is not remembered over swap outs/swap ins.
46 *
47 * Only the highest zone in the zone hierarchy gets policied. Allocations
48 * requesting a lower zone just use default policy. This implies that
49 * on systems with highmem kernel lowmem allocation don't get policied.
50 * Same with GFP_DMA allocations.
51 *
52 * For shmfs/tmpfs/hugetlbfs shared memory the policy is shared between
53 * all users and remembered even when nobody has memory mapped.
54 */
55
56/* Notebook:
57 fix mmap readahead to honour policy and enable policy for any page cache
58 object
59 statistics for bigpages
60 global policy for page cache? currently it uses process policy. Requires
61 first item above.
62 handle mremap for shared memory (currently ignored for the policy)
63 grows down?
64 make bind policy root only? It can trigger oom much faster and the
65 kernel is not always grateful with that.
66 could replace all the switch()es with a mempolicy_ops structure.
67*/
68
69#include <linux/mempolicy.h>
70#include <linux/mm.h>
71#include <linux/highmem.h>
72#include <linux/hugetlb.h>
73#include <linux/kernel.h>
74#include <linux/sched.h>
75#include <linux/mm.h>
76#include <linux/nodemask.h>
77#include <linux/cpuset.h>
78#include <linux/gfp.h>
79#include <linux/slab.h>
80#include <linux/string.h>
81#include <linux/module.h>
82#include <linux/interrupt.h>
83#include <linux/init.h>
84#include <linux/compat.h>
85#include <linux/mempolicy.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080086#include <linux/swap.h>
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <asm/tlbflush.h>
89#include <asm/uaccess.h>
90
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080091/* Internal MPOL_MF_xxx flags */
92#define MPOL_MF_DISCONTIG_OK (MPOL_MF_INTERNAL << 0) /* Skip checks for continuous vmas */
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static kmem_cache_t *policy_cache;
95static kmem_cache_t *sn_cache;
96
97#define PDprintk(fmt...)
98
99/* Highest zone. An specific allocation for a zone below that is not
100 policied. */
Christoph Lameter4be38e32006-01-06 00:11:17 -0800101int policy_zone = ZONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Andi Kleend42c6992005-07-06 19:56:03 +0200103struct mempolicy default_policy = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .refcnt = ATOMIC_INIT(1), /* never free it */
105 .policy = MPOL_DEFAULT,
106};
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* Do sanity checking on a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700109static int mpol_check_policy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Andi Kleendfcd3c02005-10-29 18:15:48 -0700111 int empty = nodes_empty(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 switch (mode) {
114 case MPOL_DEFAULT:
115 if (!empty)
116 return -EINVAL;
117 break;
118 case MPOL_BIND:
119 case MPOL_INTERLEAVE:
120 /* Preferred will only use the first bit, but allow
121 more for now. */
122 if (empty)
123 return -EINVAL;
124 break;
125 }
Andi Kleendfcd3c02005-10-29 18:15:48 -0700126 return nodes_subset(*nodes, node_online_map) ? 0 : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/* Generate a custom zonelist for the BIND policy. */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700129static struct zonelist *bind_zonelist(nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct zonelist *zl;
132 int num, max, nd;
133
Andi Kleendfcd3c02005-10-29 18:15:48 -0700134 max = 1 + MAX_NR_ZONES * nodes_weight(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 zl = kmalloc(sizeof(void *) * max, GFP_KERNEL);
136 if (!zl)
137 return NULL;
138 num = 0;
Christoph Lameter4be38e32006-01-06 00:11:17 -0800139 for_each_node_mask(nd, *nodes)
140 zl->zones[num++] = &NODE_DATA(nd)->node_zones[policy_zone];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 zl->zones[num] = NULL;
142 return zl;
143}
144
145/* Create a new policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700146static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct mempolicy *policy;
149
Andi Kleendfcd3c02005-10-29 18:15:48 -0700150 PDprintk("setting mode %d nodes[0] %lx\n", mode, nodes_addr(*nodes)[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (mode == MPOL_DEFAULT)
152 return NULL;
153 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
154 if (!policy)
155 return ERR_PTR(-ENOMEM);
156 atomic_set(&policy->refcnt, 1);
157 switch (mode) {
158 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700159 policy->v.nodes = *nodes;
Andi Kleen8f493d72006-01-03 00:07:28 +0100160 if (nodes_weight(*nodes) == 0) {
161 kmem_cache_free(policy_cache, policy);
162 return ERR_PTR(-EINVAL);
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165 case MPOL_PREFERRED:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700166 policy->v.preferred_node = first_node(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (policy->v.preferred_node >= MAX_NUMNODES)
168 policy->v.preferred_node = -1;
169 break;
170 case MPOL_BIND:
171 policy->v.zonelist = bind_zonelist(nodes);
172 if (policy->v.zonelist == NULL) {
173 kmem_cache_free(policy_cache, policy);
174 return ERR_PTR(-ENOMEM);
175 }
176 break;
177 }
178 policy->policy = mode;
179 return policy;
180}
181
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800182/* Check if we are the only process mapping the page in question */
183static inline int single_mm_mapping(struct mm_struct *mm,
184 struct address_space *mapping)
185{
186 struct vm_area_struct *vma;
187 struct prio_tree_iter iter;
188 int rc = 1;
189
190 spin_lock(&mapping->i_mmap_lock);
191 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX)
192 if (mm != vma->vm_mm) {
193 rc = 0;
194 goto out;
195 }
196 list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
197 if (mm != vma->vm_mm) {
198 rc = 0;
199 goto out;
200 }
201out:
202 spin_unlock(&mapping->i_mmap_lock);
203 return rc;
204}
205
206/*
207 * Add a page to be migrated to the pagelist
208 */
209static void migrate_page_add(struct vm_area_struct *vma,
210 struct page *page, struct list_head *pagelist, unsigned long flags)
211{
212 /*
213 * Avoid migrating a page that is shared by others and not writable.
214 */
215 if ((flags & MPOL_MF_MOVE_ALL) || !page->mapping || PageAnon(page) ||
216 mapping_writably_mapped(page->mapping) ||
217 single_mm_mapping(vma->vm_mm, page->mapping)) {
218 int rc = isolate_lru_page(page);
219
220 if (rc == 1)
221 list_add(&page->lru, pagelist);
222 /*
223 * If the isolate attempt was not successful then we just
224 * encountered an unswappable page. Something must be wrong.
225 */
226 WARN_ON(rc == 0);
227 }
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/* Ensure all existing pages follow the policy. */
Nick Pigginb5810032005-10-29 18:16:12 -0700231static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800232 unsigned long addr, unsigned long end,
233 const nodemask_t *nodes, unsigned long flags,
234 struct list_head *pagelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Hugh Dickins91612e02005-06-21 17:15:07 -0700236 pte_t *orig_pte;
237 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700238 spinlock_t *ptl;
Hugh Dickins941150a2005-06-21 17:15:06 -0700239
Hugh Dickins705e87c2005-10-29 18:16:27 -0700240 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700241 do {
Linus Torvalds6aab3412005-11-28 14:34:23 -0800242 struct page *page;
Hugh Dickins91612e02005-06-21 17:15:07 -0700243 unsigned int nid;
244
245 if (!pte_present(*pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800247 page = vm_normal_page(vma, addr, *pte);
248 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800250 nid = page_to_nid(page);
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800251 if (!node_isset(nid, *nodes)) {
252 if (pagelist)
253 migrate_page_add(vma, page, pagelist, flags);
254 else
255 break;
256 }
Hugh Dickins91612e02005-06-21 17:15:07 -0700257 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700258 pte_unmap_unlock(orig_pte, ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700259 return addr != end;
260}
261
Nick Pigginb5810032005-10-29 18:16:12 -0700262static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800263 unsigned long addr, unsigned long end,
264 const nodemask_t *nodes, unsigned long flags,
265 struct list_head *pagelist)
Hugh Dickins91612e02005-06-21 17:15:07 -0700266{
267 pmd_t *pmd;
268 unsigned long next;
269
270 pmd = pmd_offset(pud, addr);
271 do {
272 next = pmd_addr_end(addr, end);
273 if (pmd_none_or_clear_bad(pmd))
274 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800275 if (check_pte_range(vma, pmd, addr, next, nodes,
276 flags, pagelist))
Hugh Dickins91612e02005-06-21 17:15:07 -0700277 return -EIO;
278 } while (pmd++, addr = next, addr != end);
279 return 0;
280}
281
Nick Pigginb5810032005-10-29 18:16:12 -0700282static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800283 unsigned long addr, unsigned long end,
284 const nodemask_t *nodes, unsigned long flags,
285 struct list_head *pagelist)
Hugh Dickins91612e02005-06-21 17:15:07 -0700286{
287 pud_t *pud;
288 unsigned long next;
289
290 pud = pud_offset(pgd, addr);
291 do {
292 next = pud_addr_end(addr, end);
293 if (pud_none_or_clear_bad(pud))
294 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800295 if (check_pmd_range(vma, pud, addr, next, nodes,
296 flags, pagelist))
Hugh Dickins91612e02005-06-21 17:15:07 -0700297 return -EIO;
298 } while (pud++, addr = next, addr != end);
299 return 0;
300}
301
Nick Pigginb5810032005-10-29 18:16:12 -0700302static inline int check_pgd_range(struct vm_area_struct *vma,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800303 unsigned long addr, unsigned long end,
304 const nodemask_t *nodes, unsigned long flags,
305 struct list_head *pagelist)
Hugh Dickins91612e02005-06-21 17:15:07 -0700306{
307 pgd_t *pgd;
308 unsigned long next;
309
Nick Pigginb5810032005-10-29 18:16:12 -0700310 pgd = pgd_offset(vma->vm_mm, addr);
Hugh Dickins91612e02005-06-21 17:15:07 -0700311 do {
312 next = pgd_addr_end(addr, end);
313 if (pgd_none_or_clear_bad(pgd))
314 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800315 if (check_pud_range(vma, pgd, addr, next, nodes,
316 flags, pagelist))
Hugh Dickins91612e02005-06-21 17:15:07 -0700317 return -EIO;
318 } while (pgd++, addr = next, addr != end);
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800322/* Check if a vma is migratable */
323static inline int vma_migratable(struct vm_area_struct *vma)
324{
325 if (vma->vm_flags & (
326 VM_LOCKED|VM_IO|VM_HUGETLB|VM_PFNMAP))
327 return 0;
328 return 1;
329}
330
331/*
332 * Check if all pages in a range are on a set of nodes.
333 * If pagelist != NULL then isolate pages from the LRU and
334 * put them on the pagelist.
335 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static struct vm_area_struct *
337check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800338 const nodemask_t *nodes, unsigned long flags,
339 struct list_head *pagelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 int err;
342 struct vm_area_struct *first, *vma, *prev;
343
344 first = find_vma(mm, start);
345 if (!first)
346 return ERR_PTR(-EFAULT);
347 prev = NULL;
348 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800349 if (!(flags & MPOL_MF_DISCONTIG_OK)) {
350 if (!vma->vm_next && vma->vm_end < end)
351 return ERR_PTR(-EFAULT);
352 if (prev && prev->vm_end < vma->vm_start)
353 return ERR_PTR(-EFAULT);
354 }
355 if (!is_vm_hugetlb_page(vma) &&
356 ((flags & MPOL_MF_STRICT) ||
357 ((flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) &&
358 vma_migratable(vma)))) {
Andi Kleen5b952b32005-09-13 01:25:08 -0700359 unsigned long endvma = vma->vm_end;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800360
Andi Kleen5b952b32005-09-13 01:25:08 -0700361 if (endvma > end)
362 endvma = end;
363 if (vma->vm_start > start)
364 start = vma->vm_start;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800365 err = check_pgd_range(vma, start, endvma, nodes,
366 flags, pagelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (err) {
368 first = ERR_PTR(err);
369 break;
370 }
371 }
372 prev = vma;
373 }
374 return first;
375}
376
377/* Apply policy to a single VMA */
378static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
379{
380 int err = 0;
381 struct mempolicy *old = vma->vm_policy;
382
383 PDprintk("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
384 vma->vm_start, vma->vm_end, vma->vm_pgoff,
385 vma->vm_ops, vma->vm_file,
386 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
387
388 if (vma->vm_ops && vma->vm_ops->set_policy)
389 err = vma->vm_ops->set_policy(vma, new);
390 if (!err) {
391 mpol_get(new);
392 vma->vm_policy = new;
393 mpol_free(old);
394 }
395 return err;
396}
397
398/* Step 2: apply policy to a range and do splits. */
399static int mbind_range(struct vm_area_struct *vma, unsigned long start,
400 unsigned long end, struct mempolicy *new)
401{
402 struct vm_area_struct *next;
403 int err;
404
405 err = 0;
406 for (; vma && vma->vm_start < end; vma = next) {
407 next = vma->vm_next;
408 if (vma->vm_start < start)
409 err = split_vma(vma->vm_mm, vma, start, 1);
410 if (!err && vma->vm_end > end)
411 err = split_vma(vma->vm_mm, vma, end, 0);
412 if (!err)
413 err = policy_vma(vma, new);
414 if (err)
415 break;
416 }
417 return err;
418}
419
Christoph Lameter8bccd852005-10-29 18:16:59 -0700420static int contextualize_policy(int mode, nodemask_t *nodes)
421{
422 if (!nodes)
423 return 0;
424
425 /* Update current mems_allowed */
426 cpuset_update_current_mems_allowed();
427 /* Ignore nodes not set in current->mems_allowed */
428 cpuset_restrict_to_mems_allowed(nodes->bits);
429 return mpol_check_policy(mode, nodes);
430}
431
432long do_mbind(unsigned long start, unsigned long len,
433 unsigned long mode, nodemask_t *nmask, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct vm_area_struct *vma;
436 struct mm_struct *mm = current->mm;
437 struct mempolicy *new;
438 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int err;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800440 LIST_HEAD(pagelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800442 if ((flags & ~(unsigned long)(MPOL_MF_STRICT|MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
443 || mode > MPOL_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -EINVAL;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800445 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_RESOURCE))
446 return -EPERM;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (start & ~PAGE_MASK)
449 return -EINVAL;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (mode == MPOL_DEFAULT)
452 flags &= ~MPOL_MF_STRICT;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
455 end = start + len;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (end < start)
458 return -EINVAL;
459 if (end == start)
460 return 0;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800461
Christoph Lameter5fcbb232005-10-29 18:17:00 -0700462 if (mpol_check_policy(mode, nmask))
Christoph Lameter8bccd852005-10-29 18:16:59 -0700463 return -EINVAL;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800464
Christoph Lameter8bccd852005-10-29 18:16:59 -0700465 new = mpol_new(mode, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (IS_ERR(new))
467 return PTR_ERR(new);
468
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800469 /*
470 * If we are using the default policy then operation
471 * on discontinuous address spaces is okay after all
472 */
473 if (!new)
474 flags |= MPOL_MF_DISCONTIG_OK;
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 PDprintk("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
Andi Kleendfcd3c02005-10-29 18:15:48 -0700477 mode,nodes_addr(nodes)[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 down_write(&mm->mmap_sem);
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800480 vma = check_range(mm, start, end, nmask, flags,
481 (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) ? &pagelist : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 err = PTR_ERR(vma);
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800483 if (!IS_ERR(vma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 err = mbind_range(vma, start, end, new);
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800485 if (!list_empty(&pagelist))
486 migrate_pages(&pagelist, NULL);
487 if (!err && !list_empty(&pagelist) && (flags & MPOL_MF_STRICT))
488 err = -EIO;
489 }
490 if (!list_empty(&pagelist))
491 putback_lru_pages(&pagelist);
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 up_write(&mm->mmap_sem);
494 mpol_free(new);
495 return err;
496}
497
498/* Set the process memory policy */
Christoph Lameter8bccd852005-10-29 18:16:59 -0700499long do_set_mempolicy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct mempolicy *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Christoph Lameter8bccd852005-10-29 18:16:59 -0700503 if (contextualize_policy(mode, nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700505 new = mpol_new(mode, nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (IS_ERR(new))
507 return PTR_ERR(new);
508 mpol_free(current->mempolicy);
509 current->mempolicy = new;
510 if (new && new->policy == MPOL_INTERLEAVE)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700511 current->il_next = first_node(new->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return 0;
513}
514
515/* Fill a zone bitmap for a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700516static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 int i;
519
Andi Kleendfcd3c02005-10-29 18:15:48 -0700520 nodes_clear(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 switch (p->policy) {
522 case MPOL_BIND:
523 for (i = 0; p->v.zonelist->zones[i]; i++)
Christoph Lameter8bccd852005-10-29 18:16:59 -0700524 node_set(p->v.zonelist->zones[i]->zone_pgdat->node_id,
525 *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 break;
527 case MPOL_DEFAULT:
528 break;
529 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700530 *nodes = p->v.nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532 case MPOL_PREFERRED:
533 /* or use current node instead of online map? */
534 if (p->v.preferred_node < 0)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700535 *nodes = node_online_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 else
Andi Kleendfcd3c02005-10-29 18:15:48 -0700537 node_set(p->v.preferred_node, *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539 default:
540 BUG();
541 }
542}
543
544static int lookup_node(struct mm_struct *mm, unsigned long addr)
545{
546 struct page *p;
547 int err;
548
549 err = get_user_pages(current, mm, addr & PAGE_MASK, 1, 0, 0, &p, NULL);
550 if (err >= 0) {
551 err = page_to_nid(p);
552 put_page(p);
553 }
554 return err;
555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/* Retrieve NUMA policy */
Christoph Lameter8bccd852005-10-29 18:16:59 -0700558long do_get_mempolicy(int *policy, nodemask_t *nmask,
559 unsigned long addr, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Christoph Lameter8bccd852005-10-29 18:16:59 -0700561 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct mm_struct *mm = current->mm;
563 struct vm_area_struct *vma = NULL;
564 struct mempolicy *pol = current->mempolicy;
565
Paul Jackson68860ec2005-10-30 15:02:36 -0800566 cpuset_update_current_mems_allowed();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (flags & ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR))
568 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (flags & MPOL_F_ADDR) {
570 down_read(&mm->mmap_sem);
571 vma = find_vma_intersection(mm, addr, addr+1);
572 if (!vma) {
573 up_read(&mm->mmap_sem);
574 return -EFAULT;
575 }
576 if (vma->vm_ops && vma->vm_ops->get_policy)
577 pol = vma->vm_ops->get_policy(vma, addr);
578 else
579 pol = vma->vm_policy;
580 } else if (addr)
581 return -EINVAL;
582
583 if (!pol)
584 pol = &default_policy;
585
586 if (flags & MPOL_F_NODE) {
587 if (flags & MPOL_F_ADDR) {
588 err = lookup_node(mm, addr);
589 if (err < 0)
590 goto out;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700591 *policy = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 } else if (pol == current->mempolicy &&
593 pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter8bccd852005-10-29 18:16:59 -0700594 *policy = current->il_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 } else {
596 err = -EINVAL;
597 goto out;
598 }
599 } else
Christoph Lameter8bccd852005-10-29 18:16:59 -0700600 *policy = pol->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (vma) {
603 up_read(&current->mm->mmap_sem);
604 vma = NULL;
605 }
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 err = 0;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700608 if (nmask)
609 get_zonemask(pol, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 out:
612 if (vma)
613 up_read(&current->mm->mmap_sem);
614 return err;
615}
616
Christoph Lameter8bccd852005-10-29 18:16:59 -0700617/*
Christoph Lameter39743882006-01-08 01:00:51 -0800618 * For now migrate_pages simply swaps out the pages from nodes that are in
619 * the source set but not in the target set. In the future, we would
620 * want a function that moves pages between the two nodesets in such
621 * a way as to preserve the physical layout as much as possible.
622 *
623 * Returns the number of page that could not be moved.
624 */
625int do_migrate_pages(struct mm_struct *mm,
626 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
627{
628 LIST_HEAD(pagelist);
629 int count = 0;
630 nodemask_t nodes;
631
632 nodes_andnot(nodes, *from_nodes, *to_nodes);
633 nodes_complement(nodes, nodes);
634
635 down_read(&mm->mmap_sem);
636 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nodes,
637 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
638 if (!list_empty(&pagelist)) {
639 migrate_pages(&pagelist, NULL);
640 if (!list_empty(&pagelist))
641 count = putback_lru_pages(&pagelist);
642 }
643 up_read(&mm->mmap_sem);
644 return count;
645}
646
647/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700648 * User space interface with variable sized bitmaps for nodelists.
649 */
650
651/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800652static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700653 unsigned long maxnode)
654{
655 unsigned long k;
656 unsigned long nlongs;
657 unsigned long endmask;
658
659 --maxnode;
660 nodes_clear(*nodes);
661 if (maxnode == 0 || !nmask)
662 return 0;
663
664 nlongs = BITS_TO_LONGS(maxnode);
665 if ((maxnode % BITS_PER_LONG) == 0)
666 endmask = ~0UL;
667 else
668 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
669
670 /* When the user specified more nodes than supported just check
671 if the non supported part is all zero. */
672 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
673 if (nlongs > PAGE_SIZE/sizeof(long))
674 return -EINVAL;
675 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
676 unsigned long t;
677 if (get_user(t, nmask + k))
678 return -EFAULT;
679 if (k == nlongs - 1) {
680 if (t & endmask)
681 return -EINVAL;
682 } else if (t)
683 return -EINVAL;
684 }
685 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
686 endmask = ~0UL;
687 }
688
689 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
690 return -EFAULT;
691 nodes_addr(*nodes)[nlongs-1] &= endmask;
692 return 0;
693}
694
695/* Copy a kernel node mask to user space */
696static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
697 nodemask_t *nodes)
698{
699 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
700 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
701
702 if (copy > nbytes) {
703 if (copy > PAGE_SIZE)
704 return -EINVAL;
705 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
706 return -EFAULT;
707 copy = nbytes;
708 }
709 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
710}
711
712asmlinkage long sys_mbind(unsigned long start, unsigned long len,
713 unsigned long mode,
714 unsigned long __user *nmask, unsigned long maxnode,
715 unsigned flags)
716{
717 nodemask_t nodes;
718 int err;
719
720 err = get_nodes(&nodes, nmask, maxnode);
721 if (err)
722 return err;
723 return do_mbind(start, len, mode, &nodes, flags);
724}
725
726/* Set the process memory policy */
727asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
728 unsigned long maxnode)
729{
730 int err;
731 nodemask_t nodes;
732
733 if (mode < 0 || mode > MPOL_MAX)
734 return -EINVAL;
735 err = get_nodes(&nodes, nmask, maxnode);
736 if (err)
737 return err;
738 return do_set_mempolicy(mode, &nodes);
739}
740
Christoph Lameter39743882006-01-08 01:00:51 -0800741/* Macro needed until Paul implements this function in kernel/cpusets.c */
742#define cpuset_mems_allowed(task) node_online_map
743
744asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
745 const unsigned long __user *old_nodes,
746 const unsigned long __user *new_nodes)
747{
748 struct mm_struct *mm;
749 struct task_struct *task;
750 nodemask_t old;
751 nodemask_t new;
752 nodemask_t task_nodes;
753 int err;
754
755 err = get_nodes(&old, old_nodes, maxnode);
756 if (err)
757 return err;
758
759 err = get_nodes(&new, new_nodes, maxnode);
760 if (err)
761 return err;
762
763 /* Find the mm_struct */
764 read_lock(&tasklist_lock);
765 task = pid ? find_task_by_pid(pid) : current;
766 if (!task) {
767 read_unlock(&tasklist_lock);
768 return -ESRCH;
769 }
770 mm = get_task_mm(task);
771 read_unlock(&tasklist_lock);
772
773 if (!mm)
774 return -EINVAL;
775
776 /*
777 * Check if this process has the right to modify the specified
778 * process. The right exists if the process has administrative
779 * capabilities, superuser priviledges or the same
780 * userid as the target process.
781 */
782 if ((current->euid != task->suid) && (current->euid != task->uid) &&
783 (current->uid != task->suid) && (current->uid != task->uid) &&
784 !capable(CAP_SYS_ADMIN)) {
785 err = -EPERM;
786 goto out;
787 }
788
789 task_nodes = cpuset_mems_allowed(task);
790 /* Is the user allowed to access the target nodes? */
791 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_ADMIN)) {
792 err = -EPERM;
793 goto out;
794 }
795
796 err = do_migrate_pages(mm, &old, &new, MPOL_MF_MOVE);
797out:
798 mmput(mm);
799 return err;
800}
801
802
Christoph Lameter8bccd852005-10-29 18:16:59 -0700803/* Retrieve NUMA policy */
804asmlinkage long sys_get_mempolicy(int __user *policy,
805 unsigned long __user *nmask,
806 unsigned long maxnode,
807 unsigned long addr, unsigned long flags)
808{
809 int err, pval;
810 nodemask_t nodes;
811
812 if (nmask != NULL && maxnode < MAX_NUMNODES)
813 return -EINVAL;
814
815 err = do_get_mempolicy(&pval, &nodes, addr, flags);
816
817 if (err)
818 return err;
819
820 if (policy && put_user(pval, policy))
821 return -EFAULT;
822
823 if (nmask)
824 err = copy_nodes_to_user(nmask, maxnode, &nodes);
825
826 return err;
827}
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#ifdef CONFIG_COMPAT
830
831asmlinkage long compat_sys_get_mempolicy(int __user *policy,
832 compat_ulong_t __user *nmask,
833 compat_ulong_t maxnode,
834 compat_ulong_t addr, compat_ulong_t flags)
835{
836 long err;
837 unsigned long __user *nm = NULL;
838 unsigned long nr_bits, alloc_size;
839 DECLARE_BITMAP(bm, MAX_NUMNODES);
840
841 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
842 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
843
844 if (nmask)
845 nm = compat_alloc_user_space(alloc_size);
846
847 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
848
849 if (!err && nmask) {
850 err = copy_from_user(bm, nm, alloc_size);
851 /* ensure entire bitmap is zeroed */
852 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
853 err |= compat_put_bitmap(nmask, bm, nr_bits);
854 }
855
856 return err;
857}
858
859asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
860 compat_ulong_t maxnode)
861{
862 long err = 0;
863 unsigned long __user *nm = NULL;
864 unsigned long nr_bits, alloc_size;
865 DECLARE_BITMAP(bm, MAX_NUMNODES);
866
867 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
868 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
869
870 if (nmask) {
871 err = compat_get_bitmap(bm, nmask, nr_bits);
872 nm = compat_alloc_user_space(alloc_size);
873 err |= copy_to_user(nm, bm, alloc_size);
874 }
875
876 if (err)
877 return -EFAULT;
878
879 return sys_set_mempolicy(mode, nm, nr_bits+1);
880}
881
882asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
883 compat_ulong_t mode, compat_ulong_t __user *nmask,
884 compat_ulong_t maxnode, compat_ulong_t flags)
885{
886 long err = 0;
887 unsigned long __user *nm = NULL;
888 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -0700889 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
892 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
893
894 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -0700895 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -0700897 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
900 if (err)
901 return -EFAULT;
902
903 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
904}
905
906#endif
907
908/* Return effective policy for a VMA */
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700909struct mempolicy *
910get_vma_policy(struct task_struct *task, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700912 struct mempolicy *pol = task->mempolicy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (vma) {
915 if (vma->vm_ops && vma->vm_ops->get_policy)
Christoph Lameter8bccd852005-10-29 18:16:59 -0700916 pol = vma->vm_ops->get_policy(vma, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 else if (vma->vm_policy &&
918 vma->vm_policy->policy != MPOL_DEFAULT)
919 pol = vma->vm_policy;
920 }
921 if (!pol)
922 pol = &default_policy;
923 return pol;
924}
925
926/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +0100927static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 int nd;
930
931 switch (policy->policy) {
932 case MPOL_PREFERRED:
933 nd = policy->v.preferred_node;
934 if (nd < 0)
935 nd = numa_node_id();
936 break;
937 case MPOL_BIND:
938 /* Lower zones don't get a policy applied */
939 /* Careful: current->mems_allowed might have moved */
Al Viroaf4ca452005-10-21 02:55:38 -0400940 if (gfp_zone(gfp) >= policy_zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
942 return policy->v.zonelist;
943 /*FALL THROUGH*/
944 case MPOL_INTERLEAVE: /* should not happen */
945 case MPOL_DEFAULT:
946 nd = numa_node_id();
947 break;
948 default:
949 nd = 0;
950 BUG();
951 }
Al Viroaf4ca452005-10-21 02:55:38 -0400952 return NODE_DATA(nd)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955/* Do dynamic interleaving for a process */
956static unsigned interleave_nodes(struct mempolicy *policy)
957{
958 unsigned nid, next;
959 struct task_struct *me = current;
960
961 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -0700962 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700964 next = first_node(policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 me->il_next = next;
966 return nid;
967}
968
969/* Do static interleaving for a VMA with known offset. */
970static unsigned offset_il_node(struct mempolicy *pol,
971 struct vm_area_struct *vma, unsigned long off)
972{
Andi Kleendfcd3c02005-10-29 18:15:48 -0700973 unsigned nnodes = nodes_weight(pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 unsigned target = (unsigned)off % nnodes;
975 int c;
976 int nid = -1;
977
978 c = 0;
979 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -0700980 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 c++;
982 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return nid;
984}
985
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800986/* Determine a node number for interleave */
987static inline unsigned interleave_nid(struct mempolicy *pol,
988 struct vm_area_struct *vma, unsigned long addr, int shift)
989{
990 if (vma) {
991 unsigned long off;
992
993 off = vma->vm_pgoff;
994 off += (addr - vma->vm_start) >> shift;
995 return offset_il_node(pol, vma, off);
996 } else
997 return interleave_nodes(pol);
998}
999
1000/* Return a zonelist suitable for a huge page allocation. */
1001struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr)
1002{
1003 struct mempolicy *pol = get_vma_policy(current, vma, addr);
1004
1005 if (pol->policy == MPOL_INTERLEAVE) {
1006 unsigned nid;
1007
1008 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
1009 return NODE_DATA(nid)->node_zonelists + gfp_zone(GFP_HIGHUSER);
1010 }
1011 return zonelist_policy(GFP_HIGHUSER, pol);
1012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/* Allocate a page in interleaved policy.
1015 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001016static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1017 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 struct zonelist *zl;
1020 struct page *page;
1021
Al Viroaf4ca452005-10-21 02:55:38 -04001022 zl = NODE_DATA(nid)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 page = __alloc_pages(gfp, order, zl);
1024 if (page && page_zone(page) == zl->zones[0]) {
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001025 zone_pcp(zl->zones[0],get_cpu())->interleave_hit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 put_cpu();
1027 }
1028 return page;
1029}
1030
1031/**
1032 * alloc_page_vma - Allocate a page for a VMA.
1033 *
1034 * @gfp:
1035 * %GFP_USER user allocation.
1036 * %GFP_KERNEL kernel allocations,
1037 * %GFP_HIGHMEM highmem/user allocations,
1038 * %GFP_FS allocation should not call back into a file system.
1039 * %GFP_ATOMIC don't sleep.
1040 *
1041 * @vma: Pointer to VMA or NULL if not available.
1042 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1043 *
1044 * This function allocates a page from the kernel page pool and applies
1045 * a NUMA policy associated with the VMA or the current process.
1046 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1047 * mm_struct of the VMA to prevent it from going away. Should be used for
1048 * all allocations for pages that will be mapped into
1049 * user space. Returns NULL when no page can be allocated.
1050 *
1051 * Should be called with the mm_sem of the vma hold.
1052 */
1053struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001054alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001056 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 cpuset_update_current_mems_allowed();
1059
1060 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1061 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001062
1063 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return alloc_page_interleave(gfp, 0, nid);
1065 }
1066 return __alloc_pages(gfp, 0, zonelist_policy(gfp, pol));
1067}
1068
1069/**
1070 * alloc_pages_current - Allocate pages.
1071 *
1072 * @gfp:
1073 * %GFP_USER user allocation,
1074 * %GFP_KERNEL kernel allocation,
1075 * %GFP_HIGHMEM highmem allocation,
1076 * %GFP_FS don't call back into a file system.
1077 * %GFP_ATOMIC don't sleep.
1078 * @order: Power of two of allocation size in pages. 0 is a single page.
1079 *
1080 * Allocate a page from the kernel page pool. When not in
1081 * interrupt context and apply the current process NUMA policy.
1082 * Returns NULL when no page can be allocated.
1083 *
1084 * Don't call cpuset_update_current_mems_allowed() unless
1085 * 1) it's ok to take cpuset_sem (can WAIT), and
1086 * 2) allocating for current task (not interrupt).
1087 */
Al Virodd0fc662005-10-07 07:46:04 +01001088struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 struct mempolicy *pol = current->mempolicy;
1091
1092 if ((gfp & __GFP_WAIT) && !in_interrupt())
1093 cpuset_update_current_mems_allowed();
1094 if (!pol || in_interrupt())
1095 pol = &default_policy;
1096 if (pol->policy == MPOL_INTERLEAVE)
1097 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
1098 return __alloc_pages(gfp, order, zonelist_policy(gfp, pol));
1099}
1100EXPORT_SYMBOL(alloc_pages_current);
1101
1102/* Slow path of a mempolicy copy */
1103struct mempolicy *__mpol_copy(struct mempolicy *old)
1104{
1105 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1106
1107 if (!new)
1108 return ERR_PTR(-ENOMEM);
1109 *new = *old;
1110 atomic_set(&new->refcnt, 1);
1111 if (new->policy == MPOL_BIND) {
1112 int sz = ksize(old->v.zonelist);
1113 new->v.zonelist = kmalloc(sz, SLAB_KERNEL);
1114 if (!new->v.zonelist) {
1115 kmem_cache_free(policy_cache, new);
1116 return ERR_PTR(-ENOMEM);
1117 }
1118 memcpy(new->v.zonelist, old->v.zonelist, sz);
1119 }
1120 return new;
1121}
1122
1123/* Slow path of a mempolicy comparison */
1124int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1125{
1126 if (!a || !b)
1127 return 0;
1128 if (a->policy != b->policy)
1129 return 0;
1130 switch (a->policy) {
1131 case MPOL_DEFAULT:
1132 return 1;
1133 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001134 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 case MPOL_PREFERRED:
1136 return a->v.preferred_node == b->v.preferred_node;
1137 case MPOL_BIND: {
1138 int i;
1139 for (i = 0; a->v.zonelist->zones[i]; i++)
1140 if (a->v.zonelist->zones[i] != b->v.zonelist->zones[i])
1141 return 0;
1142 return b->v.zonelist->zones[i] == NULL;
1143 }
1144 default:
1145 BUG();
1146 return 0;
1147 }
1148}
1149
1150/* Slow path of a mpol destructor. */
1151void __mpol_free(struct mempolicy *p)
1152{
1153 if (!atomic_dec_and_test(&p->refcnt))
1154 return;
1155 if (p->policy == MPOL_BIND)
1156 kfree(p->v.zonelist);
1157 p->policy = MPOL_DEFAULT;
1158 kmem_cache_free(policy_cache, p);
1159}
1160
1161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * Shared memory backing store policy support.
1163 *
1164 * Remember policies even when nobody has shared memory mapped.
1165 * The policies are kept in Red-Black tree linked from the inode.
1166 * They are protected by the sp->lock spinlock, which should be held
1167 * for any accesses to the tree.
1168 */
1169
1170/* lookup first element intersecting start-end */
1171/* Caller holds sp->lock */
1172static struct sp_node *
1173sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1174{
1175 struct rb_node *n = sp->root.rb_node;
1176
1177 while (n) {
1178 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1179
1180 if (start >= p->end)
1181 n = n->rb_right;
1182 else if (end <= p->start)
1183 n = n->rb_left;
1184 else
1185 break;
1186 }
1187 if (!n)
1188 return NULL;
1189 for (;;) {
1190 struct sp_node *w = NULL;
1191 struct rb_node *prev = rb_prev(n);
1192 if (!prev)
1193 break;
1194 w = rb_entry(prev, struct sp_node, nd);
1195 if (w->end <= start)
1196 break;
1197 n = prev;
1198 }
1199 return rb_entry(n, struct sp_node, nd);
1200}
1201
1202/* Insert a new shared policy into the list. */
1203/* Caller holds sp->lock */
1204static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1205{
1206 struct rb_node **p = &sp->root.rb_node;
1207 struct rb_node *parent = NULL;
1208 struct sp_node *nd;
1209
1210 while (*p) {
1211 parent = *p;
1212 nd = rb_entry(parent, struct sp_node, nd);
1213 if (new->start < nd->start)
1214 p = &(*p)->rb_left;
1215 else if (new->end > nd->end)
1216 p = &(*p)->rb_right;
1217 else
1218 BUG();
1219 }
1220 rb_link_node(&new->nd, parent, p);
1221 rb_insert_color(&new->nd, &sp->root);
1222 PDprintk("inserting %lx-%lx: %d\n", new->start, new->end,
1223 new->policy ? new->policy->policy : 0);
1224}
1225
1226/* Find shared policy intersecting idx */
1227struct mempolicy *
1228mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1229{
1230 struct mempolicy *pol = NULL;
1231 struct sp_node *sn;
1232
1233 if (!sp->root.rb_node)
1234 return NULL;
1235 spin_lock(&sp->lock);
1236 sn = sp_lookup(sp, idx, idx+1);
1237 if (sn) {
1238 mpol_get(sn->policy);
1239 pol = sn->policy;
1240 }
1241 spin_unlock(&sp->lock);
1242 return pol;
1243}
1244
1245static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1246{
1247 PDprintk("deleting %lx-l%x\n", n->start, n->end);
1248 rb_erase(&n->nd, &sp->root);
1249 mpol_free(n->policy);
1250 kmem_cache_free(sn_cache, n);
1251}
1252
1253struct sp_node *
1254sp_alloc(unsigned long start, unsigned long end, struct mempolicy *pol)
1255{
1256 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1257
1258 if (!n)
1259 return NULL;
1260 n->start = start;
1261 n->end = end;
1262 mpol_get(pol);
1263 n->policy = pol;
1264 return n;
1265}
1266
1267/* Replace a policy range. */
1268static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1269 unsigned long end, struct sp_node *new)
1270{
1271 struct sp_node *n, *new2 = NULL;
1272
1273restart:
1274 spin_lock(&sp->lock);
1275 n = sp_lookup(sp, start, end);
1276 /* Take care of old policies in the same range. */
1277 while (n && n->start < end) {
1278 struct rb_node *next = rb_next(&n->nd);
1279 if (n->start >= start) {
1280 if (n->end <= end)
1281 sp_delete(sp, n);
1282 else
1283 n->start = end;
1284 } else {
1285 /* Old policy spanning whole new range. */
1286 if (n->end > end) {
1287 if (!new2) {
1288 spin_unlock(&sp->lock);
1289 new2 = sp_alloc(end, n->end, n->policy);
1290 if (!new2)
1291 return -ENOMEM;
1292 goto restart;
1293 }
1294 n->end = start;
1295 sp_insert(sp, new2);
1296 new2 = NULL;
1297 break;
1298 } else
1299 n->end = start;
1300 }
1301 if (!next)
1302 break;
1303 n = rb_entry(next, struct sp_node, nd);
1304 }
1305 if (new)
1306 sp_insert(sp, new);
1307 spin_unlock(&sp->lock);
1308 if (new2) {
1309 mpol_free(new2->policy);
1310 kmem_cache_free(sn_cache, new2);
1311 }
1312 return 0;
1313}
1314
1315int mpol_set_shared_policy(struct shared_policy *info,
1316 struct vm_area_struct *vma, struct mempolicy *npol)
1317{
1318 int err;
1319 struct sp_node *new = NULL;
1320 unsigned long sz = vma_pages(vma);
1321
1322 PDprintk("set_shared_policy %lx sz %lu %d %lx\n",
1323 vma->vm_pgoff,
1324 sz, npol? npol->policy : -1,
Andi Kleendfcd3c02005-10-29 18:15:48 -07001325 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 if (npol) {
1328 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1329 if (!new)
1330 return -ENOMEM;
1331 }
1332 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1333 if (err && new)
1334 kmem_cache_free(sn_cache, new);
1335 return err;
1336}
1337
1338/* Free a backing policy store on inode delete. */
1339void mpol_free_shared_policy(struct shared_policy *p)
1340{
1341 struct sp_node *n;
1342 struct rb_node *next;
1343
1344 if (!p->root.rb_node)
1345 return;
1346 spin_lock(&p->lock);
1347 next = rb_first(&p->root);
1348 while (next) {
1349 n = rb_entry(next, struct sp_node, nd);
1350 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001351 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 mpol_free(n->policy);
1353 kmem_cache_free(sn_cache, n);
1354 }
1355 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358/* assumes fs == KERNEL_DS */
1359void __init numa_policy_init(void)
1360{
1361 policy_cache = kmem_cache_create("numa_policy",
1362 sizeof(struct mempolicy),
1363 0, SLAB_PANIC, NULL, NULL);
1364
1365 sn_cache = kmem_cache_create("shared_policy_node",
1366 sizeof(struct sp_node),
1367 0, SLAB_PANIC, NULL, NULL);
1368
1369 /* Set interleaving policy for system init. This way not all
1370 the data structures allocated at system boot end up in node zero. */
1371
Christoph Lameter8bccd852005-10-29 18:16:59 -07001372 if (do_set_mempolicy(MPOL_INTERLEAVE, &node_online_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 printk("numa_policy_init: interleaving failed\n");
1374}
1375
Christoph Lameter8bccd852005-10-29 18:16:59 -07001376/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377void numa_default_policy(void)
1378{
Christoph Lameter8bccd852005-10-29 18:16:59 -07001379 do_set_mempolicy(MPOL_DEFAULT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
Paul Jackson68860ec2005-10-30 15:02:36 -08001381
1382/* Migrate a policy to a different set of nodes */
1383static void rebind_policy(struct mempolicy *pol, const nodemask_t *old,
1384 const nodemask_t *new)
1385{
1386 nodemask_t tmp;
1387
1388 if (!pol)
1389 return;
1390
1391 switch (pol->policy) {
1392 case MPOL_DEFAULT:
1393 break;
1394 case MPOL_INTERLEAVE:
1395 nodes_remap(tmp, pol->v.nodes, *old, *new);
1396 pol->v.nodes = tmp;
1397 current->il_next = node_remap(current->il_next, *old, *new);
1398 break;
1399 case MPOL_PREFERRED:
1400 pol->v.preferred_node = node_remap(pol->v.preferred_node,
1401 *old, *new);
1402 break;
1403 case MPOL_BIND: {
1404 nodemask_t nodes;
1405 struct zone **z;
1406 struct zonelist *zonelist;
1407
1408 nodes_clear(nodes);
1409 for (z = pol->v.zonelist->zones; *z; z++)
1410 node_set((*z)->zone_pgdat->node_id, nodes);
1411 nodes_remap(tmp, nodes, *old, *new);
1412 nodes = tmp;
1413
1414 zonelist = bind_zonelist(&nodes);
1415
1416 /* If no mem, then zonelist is NULL and we keep old zonelist.
1417 * If that old zonelist has no remaining mems_allowed nodes,
1418 * then zonelist_policy() will "FALL THROUGH" to MPOL_DEFAULT.
1419 */
1420
1421 if (zonelist) {
1422 /* Good - got mem - substitute new zonelist */
1423 kfree(pol->v.zonelist);
1424 pol->v.zonelist = zonelist;
1425 }
1426 break;
1427 }
1428 default:
1429 BUG();
1430 break;
1431 }
1432}
1433
1434/*
1435 * Someone moved this task to different nodes. Fixup mempolicies.
1436 *
1437 * TODO - fixup current->mm->vma and shmfs/tmpfs/hugetlbfs policies as well,
1438 * once we have a cpuset mechanism to mark which cpuset subtree is migrating.
1439 */
1440void numa_policy_rebind(const nodemask_t *old, const nodemask_t *new)
1441{
1442 rebind_policy(current->mempolicy, old, new);
1443}