[PATCH] powerpc: powermac adb fix udbg_adb_use_btext warning
[linux-2.6/x86.git] / mm / mempolicy.c
blob0f1d2b8a952b900f899ea19233c84b862909323d
1 /*
2 * Simple NUMA memory policy for the Linux kernel.
4 * Copyright 2003,2004 Andi Kleen, SuSE Labs.
5 * (C) Copyright 2005 Christoph Lameter, Silicon Graphics, Inc.
6 * Subject to the GNU Public License, version 2.
8 * NUMA policy allows the user to give hints in which node(s) memory should
9 * be allocated.
11 * Support four policies per VMA and per process:
13 * The VMA policy has priority over the process policy for a page fault.
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.
22 * bind Only allocate memory on a specific set of nodes,
23 * no fallback.
24 * 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
28 * 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.
34 * 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.
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.
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.
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.
52 * For shmfs/tmpfs/hugetlbfs shared memory the policy is shared between
53 * all users and remembered even when nobody has memory mapped.
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.
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>
86 #include <asm/tlbflush.h>
87 #include <asm/uaccess.h>
89 static kmem_cache_t *policy_cache;
90 static kmem_cache_t *sn_cache;
92 #define PDprintk(fmt...)
94 /* Highest zone. An specific allocation for a zone below that is not
95 policied. */
96 int policy_zone = ZONE_DMA;
98 struct mempolicy default_policy = {
99 .refcnt = ATOMIC_INIT(1), /* never free it */
100 .policy = MPOL_DEFAULT,
103 /* Do sanity checking on a policy */
104 static int mpol_check_policy(int mode, nodemask_t *nodes)
106 int empty = nodes_empty(*nodes);
108 switch (mode) {
109 case MPOL_DEFAULT:
110 if (!empty)
111 return -EINVAL;
112 break;
113 case MPOL_BIND:
114 case MPOL_INTERLEAVE:
115 /* Preferred will only use the first bit, but allow
116 more for now. */
117 if (empty)
118 return -EINVAL;
119 break;
121 return nodes_subset(*nodes, node_online_map) ? 0 : -EINVAL;
123 /* Generate a custom zonelist for the BIND policy. */
124 static struct zonelist *bind_zonelist(nodemask_t *nodes)
126 struct zonelist *zl;
127 int num, max, nd;
129 max = 1 + MAX_NR_ZONES * nodes_weight(*nodes);
130 zl = kmalloc(sizeof(void *) * max, GFP_KERNEL);
131 if (!zl)
132 return NULL;
133 num = 0;
134 for_each_node_mask(nd, *nodes)
135 zl->zones[num++] = &NODE_DATA(nd)->node_zones[policy_zone];
136 zl->zones[num] = NULL;
137 return zl;
140 /* Create a new policy */
141 static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
143 struct mempolicy *policy;
145 PDprintk("setting mode %d nodes[0] %lx\n", mode, nodes_addr(*nodes)[0]);
146 if (mode == MPOL_DEFAULT)
147 return NULL;
148 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
149 if (!policy)
150 return ERR_PTR(-ENOMEM);
151 atomic_set(&policy->refcnt, 1);
152 switch (mode) {
153 case MPOL_INTERLEAVE:
154 policy->v.nodes = *nodes;
155 if (nodes_weight(*nodes) == 0) {
156 kmem_cache_free(policy_cache, policy);
157 return ERR_PTR(-EINVAL);
159 break;
160 case MPOL_PREFERRED:
161 policy->v.preferred_node = first_node(*nodes);
162 if (policy->v.preferred_node >= MAX_NUMNODES)
163 policy->v.preferred_node = -1;
164 break;
165 case MPOL_BIND:
166 policy->v.zonelist = bind_zonelist(nodes);
167 if (policy->v.zonelist == NULL) {
168 kmem_cache_free(policy_cache, policy);
169 return ERR_PTR(-ENOMEM);
171 break;
173 policy->policy = mode;
174 return policy;
177 /* Ensure all existing pages follow the policy. */
178 static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
179 unsigned long addr, unsigned long end, nodemask_t *nodes)
181 pte_t *orig_pte;
182 pte_t *pte;
183 spinlock_t *ptl;
185 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
186 do {
187 struct page *page;
188 unsigned int nid;
190 if (!pte_present(*pte))
191 continue;
192 page = vm_normal_page(vma, addr, *pte);
193 if (!page)
194 continue;
195 nid = page_to_nid(page);
196 if (!node_isset(nid, *nodes))
197 break;
198 } while (pte++, addr += PAGE_SIZE, addr != end);
199 pte_unmap_unlock(orig_pte, ptl);
200 return addr != end;
203 static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
204 unsigned long addr, unsigned long end, nodemask_t *nodes)
206 pmd_t *pmd;
207 unsigned long next;
209 pmd = pmd_offset(pud, addr);
210 do {
211 next = pmd_addr_end(addr, end);
212 if (pmd_none_or_clear_bad(pmd))
213 continue;
214 if (check_pte_range(vma, pmd, addr, next, nodes))
215 return -EIO;
216 } while (pmd++, addr = next, addr != end);
217 return 0;
220 static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
221 unsigned long addr, unsigned long end, nodemask_t *nodes)
223 pud_t *pud;
224 unsigned long next;
226 pud = pud_offset(pgd, addr);
227 do {
228 next = pud_addr_end(addr, end);
229 if (pud_none_or_clear_bad(pud))
230 continue;
231 if (check_pmd_range(vma, pud, addr, next, nodes))
232 return -EIO;
233 } while (pud++, addr = next, addr != end);
234 return 0;
237 static inline int check_pgd_range(struct vm_area_struct *vma,
238 unsigned long addr, unsigned long end, nodemask_t *nodes)
240 pgd_t *pgd;
241 unsigned long next;
243 pgd = pgd_offset(vma->vm_mm, addr);
244 do {
245 next = pgd_addr_end(addr, end);
246 if (pgd_none_or_clear_bad(pgd))
247 continue;
248 if (check_pud_range(vma, pgd, addr, next, nodes))
249 return -EIO;
250 } while (pgd++, addr = next, addr != end);
251 return 0;
254 /* Step 1: check the range */
255 static struct vm_area_struct *
256 check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
257 nodemask_t *nodes, unsigned long flags)
259 int err;
260 struct vm_area_struct *first, *vma, *prev;
262 first = find_vma(mm, start);
263 if (!first)
264 return ERR_PTR(-EFAULT);
265 prev = NULL;
266 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
267 if (!vma->vm_next && vma->vm_end < end)
268 return ERR_PTR(-EFAULT);
269 if (prev && prev->vm_end < vma->vm_start)
270 return ERR_PTR(-EFAULT);
271 if ((flags & MPOL_MF_STRICT) && !is_vm_hugetlb_page(vma)) {
272 unsigned long endvma = vma->vm_end;
273 if (endvma > end)
274 endvma = end;
275 if (vma->vm_start > start)
276 start = vma->vm_start;
277 err = check_pgd_range(vma, start, endvma, nodes);
278 if (err) {
279 first = ERR_PTR(err);
280 break;
283 prev = vma;
285 return first;
288 /* Apply policy to a single VMA */
289 static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
291 int err = 0;
292 struct mempolicy *old = vma->vm_policy;
294 PDprintk("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
295 vma->vm_start, vma->vm_end, vma->vm_pgoff,
296 vma->vm_ops, vma->vm_file,
297 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
299 if (vma->vm_ops && vma->vm_ops->set_policy)
300 err = vma->vm_ops->set_policy(vma, new);
301 if (!err) {
302 mpol_get(new);
303 vma->vm_policy = new;
304 mpol_free(old);
306 return err;
309 /* Step 2: apply policy to a range and do splits. */
310 static int mbind_range(struct vm_area_struct *vma, unsigned long start,
311 unsigned long end, struct mempolicy *new)
313 struct vm_area_struct *next;
314 int err;
316 err = 0;
317 for (; vma && vma->vm_start < end; vma = next) {
318 next = vma->vm_next;
319 if (vma->vm_start < start)
320 err = split_vma(vma->vm_mm, vma, start, 1);
321 if (!err && vma->vm_end > end)
322 err = split_vma(vma->vm_mm, vma, end, 0);
323 if (!err)
324 err = policy_vma(vma, new);
325 if (err)
326 break;
328 return err;
331 static int contextualize_policy(int mode, nodemask_t *nodes)
333 if (!nodes)
334 return 0;
336 /* Update current mems_allowed */
337 cpuset_update_current_mems_allowed();
338 /* Ignore nodes not set in current->mems_allowed */
339 cpuset_restrict_to_mems_allowed(nodes->bits);
340 return mpol_check_policy(mode, nodes);
343 long do_mbind(unsigned long start, unsigned long len,
344 unsigned long mode, nodemask_t *nmask, unsigned long flags)
346 struct vm_area_struct *vma;
347 struct mm_struct *mm = current->mm;
348 struct mempolicy *new;
349 unsigned long end;
350 int err;
352 if ((flags & ~(unsigned long)(MPOL_MF_STRICT)) || mode > MPOL_MAX)
353 return -EINVAL;
354 if (start & ~PAGE_MASK)
355 return -EINVAL;
356 if (mode == MPOL_DEFAULT)
357 flags &= ~MPOL_MF_STRICT;
358 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
359 end = start + len;
360 if (end < start)
361 return -EINVAL;
362 if (end == start)
363 return 0;
364 if (mpol_check_policy(mode, nmask))
365 return -EINVAL;
366 new = mpol_new(mode, nmask);
367 if (IS_ERR(new))
368 return PTR_ERR(new);
370 PDprintk("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
371 mode,nodes_addr(nodes)[0]);
373 down_write(&mm->mmap_sem);
374 vma = check_range(mm, start, end, nmask, flags);
375 err = PTR_ERR(vma);
376 if (!IS_ERR(vma))
377 err = mbind_range(vma, start, end, new);
378 up_write(&mm->mmap_sem);
379 mpol_free(new);
380 return err;
383 /* Set the process memory policy */
384 long do_set_mempolicy(int mode, nodemask_t *nodes)
386 struct mempolicy *new;
388 if (contextualize_policy(mode, nodes))
389 return -EINVAL;
390 new = mpol_new(mode, nodes);
391 if (IS_ERR(new))
392 return PTR_ERR(new);
393 mpol_free(current->mempolicy);
394 current->mempolicy = new;
395 if (new && new->policy == MPOL_INTERLEAVE)
396 current->il_next = first_node(new->v.nodes);
397 return 0;
400 /* Fill a zone bitmap for a policy */
401 static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
403 int i;
405 nodes_clear(*nodes);
406 switch (p->policy) {
407 case MPOL_BIND:
408 for (i = 0; p->v.zonelist->zones[i]; i++)
409 node_set(p->v.zonelist->zones[i]->zone_pgdat->node_id,
410 *nodes);
411 break;
412 case MPOL_DEFAULT:
413 break;
414 case MPOL_INTERLEAVE:
415 *nodes = p->v.nodes;
416 break;
417 case MPOL_PREFERRED:
418 /* or use current node instead of online map? */
419 if (p->v.preferred_node < 0)
420 *nodes = node_online_map;
421 else
422 node_set(p->v.preferred_node, *nodes);
423 break;
424 default:
425 BUG();
429 static int lookup_node(struct mm_struct *mm, unsigned long addr)
431 struct page *p;
432 int err;
434 err = get_user_pages(current, mm, addr & PAGE_MASK, 1, 0, 0, &p, NULL);
435 if (err >= 0) {
436 err = page_to_nid(p);
437 put_page(p);
439 return err;
442 /* Retrieve NUMA policy */
443 long do_get_mempolicy(int *policy, nodemask_t *nmask,
444 unsigned long addr, unsigned long flags)
446 int err;
447 struct mm_struct *mm = current->mm;
448 struct vm_area_struct *vma = NULL;
449 struct mempolicy *pol = current->mempolicy;
451 cpuset_update_current_mems_allowed();
452 if (flags & ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR))
453 return -EINVAL;
454 if (flags & MPOL_F_ADDR) {
455 down_read(&mm->mmap_sem);
456 vma = find_vma_intersection(mm, addr, addr+1);
457 if (!vma) {
458 up_read(&mm->mmap_sem);
459 return -EFAULT;
461 if (vma->vm_ops && vma->vm_ops->get_policy)
462 pol = vma->vm_ops->get_policy(vma, addr);
463 else
464 pol = vma->vm_policy;
465 } else if (addr)
466 return -EINVAL;
468 if (!pol)
469 pol = &default_policy;
471 if (flags & MPOL_F_NODE) {
472 if (flags & MPOL_F_ADDR) {
473 err = lookup_node(mm, addr);
474 if (err < 0)
475 goto out;
476 *policy = err;
477 } else if (pol == current->mempolicy &&
478 pol->policy == MPOL_INTERLEAVE) {
479 *policy = current->il_next;
480 } else {
481 err = -EINVAL;
482 goto out;
484 } else
485 *policy = pol->policy;
487 if (vma) {
488 up_read(&current->mm->mmap_sem);
489 vma = NULL;
492 err = 0;
493 if (nmask)
494 get_zonemask(pol, nmask);
496 out:
497 if (vma)
498 up_read(&current->mm->mmap_sem);
499 return err;
503 * User space interface with variable sized bitmaps for nodelists.
506 /* Copy a node mask from user space. */
507 static int get_nodes(nodemask_t *nodes, unsigned long __user *nmask,
508 unsigned long maxnode)
510 unsigned long k;
511 unsigned long nlongs;
512 unsigned long endmask;
514 --maxnode;
515 nodes_clear(*nodes);
516 if (maxnode == 0 || !nmask)
517 return 0;
519 nlongs = BITS_TO_LONGS(maxnode);
520 if ((maxnode % BITS_PER_LONG) == 0)
521 endmask = ~0UL;
522 else
523 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
525 /* When the user specified more nodes than supported just check
526 if the non supported part is all zero. */
527 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
528 if (nlongs > PAGE_SIZE/sizeof(long))
529 return -EINVAL;
530 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
531 unsigned long t;
532 if (get_user(t, nmask + k))
533 return -EFAULT;
534 if (k == nlongs - 1) {
535 if (t & endmask)
536 return -EINVAL;
537 } else if (t)
538 return -EINVAL;
540 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
541 endmask = ~0UL;
544 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
545 return -EFAULT;
546 nodes_addr(*nodes)[nlongs-1] &= endmask;
547 return 0;
550 /* Copy a kernel node mask to user space */
551 static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
552 nodemask_t *nodes)
554 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
555 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
557 if (copy > nbytes) {
558 if (copy > PAGE_SIZE)
559 return -EINVAL;
560 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
561 return -EFAULT;
562 copy = nbytes;
564 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
567 asmlinkage long sys_mbind(unsigned long start, unsigned long len,
568 unsigned long mode,
569 unsigned long __user *nmask, unsigned long maxnode,
570 unsigned flags)
572 nodemask_t nodes;
573 int err;
575 err = get_nodes(&nodes, nmask, maxnode);
576 if (err)
577 return err;
578 return do_mbind(start, len, mode, &nodes, flags);
581 /* Set the process memory policy */
582 asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
583 unsigned long maxnode)
585 int err;
586 nodemask_t nodes;
588 if (mode < 0 || mode > MPOL_MAX)
589 return -EINVAL;
590 err = get_nodes(&nodes, nmask, maxnode);
591 if (err)
592 return err;
593 return do_set_mempolicy(mode, &nodes);
596 /* Retrieve NUMA policy */
597 asmlinkage long sys_get_mempolicy(int __user *policy,
598 unsigned long __user *nmask,
599 unsigned long maxnode,
600 unsigned long addr, unsigned long flags)
602 int err, pval;
603 nodemask_t nodes;
605 if (nmask != NULL && maxnode < MAX_NUMNODES)
606 return -EINVAL;
608 err = do_get_mempolicy(&pval, &nodes, addr, flags);
610 if (err)
611 return err;
613 if (policy && put_user(pval, policy))
614 return -EFAULT;
616 if (nmask)
617 err = copy_nodes_to_user(nmask, maxnode, &nodes);
619 return err;
622 #ifdef CONFIG_COMPAT
624 asmlinkage long compat_sys_get_mempolicy(int __user *policy,
625 compat_ulong_t __user *nmask,
626 compat_ulong_t maxnode,
627 compat_ulong_t addr, compat_ulong_t flags)
629 long err;
630 unsigned long __user *nm = NULL;
631 unsigned long nr_bits, alloc_size;
632 DECLARE_BITMAP(bm, MAX_NUMNODES);
634 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
635 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
637 if (nmask)
638 nm = compat_alloc_user_space(alloc_size);
640 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
642 if (!err && nmask) {
643 err = copy_from_user(bm, nm, alloc_size);
644 /* ensure entire bitmap is zeroed */
645 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
646 err |= compat_put_bitmap(nmask, bm, nr_bits);
649 return err;
652 asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
653 compat_ulong_t maxnode)
655 long err = 0;
656 unsigned long __user *nm = NULL;
657 unsigned long nr_bits, alloc_size;
658 DECLARE_BITMAP(bm, MAX_NUMNODES);
660 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
661 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
663 if (nmask) {
664 err = compat_get_bitmap(bm, nmask, nr_bits);
665 nm = compat_alloc_user_space(alloc_size);
666 err |= copy_to_user(nm, bm, alloc_size);
669 if (err)
670 return -EFAULT;
672 return sys_set_mempolicy(mode, nm, nr_bits+1);
675 asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
676 compat_ulong_t mode, compat_ulong_t __user *nmask,
677 compat_ulong_t maxnode, compat_ulong_t flags)
679 long err = 0;
680 unsigned long __user *nm = NULL;
681 unsigned long nr_bits, alloc_size;
682 nodemask_t bm;
684 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
685 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
687 if (nmask) {
688 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
689 nm = compat_alloc_user_space(alloc_size);
690 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
693 if (err)
694 return -EFAULT;
696 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
699 #endif
701 /* Return effective policy for a VMA */
702 struct mempolicy *
703 get_vma_policy(struct task_struct *task, struct vm_area_struct *vma, unsigned long addr)
705 struct mempolicy *pol = task->mempolicy;
707 if (vma) {
708 if (vma->vm_ops && vma->vm_ops->get_policy)
709 pol = vma->vm_ops->get_policy(vma, addr);
710 else if (vma->vm_policy &&
711 vma->vm_policy->policy != MPOL_DEFAULT)
712 pol = vma->vm_policy;
714 if (!pol)
715 pol = &default_policy;
716 return pol;
719 /* Return a zonelist representing a mempolicy */
720 static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
722 int nd;
724 switch (policy->policy) {
725 case MPOL_PREFERRED:
726 nd = policy->v.preferred_node;
727 if (nd < 0)
728 nd = numa_node_id();
729 break;
730 case MPOL_BIND:
731 /* Lower zones don't get a policy applied */
732 /* Careful: current->mems_allowed might have moved */
733 if (gfp_zone(gfp) >= policy_zone)
734 if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
735 return policy->v.zonelist;
736 /*FALL THROUGH*/
737 case MPOL_INTERLEAVE: /* should not happen */
738 case MPOL_DEFAULT:
739 nd = numa_node_id();
740 break;
741 default:
742 nd = 0;
743 BUG();
745 return NODE_DATA(nd)->node_zonelists + gfp_zone(gfp);
748 /* Do dynamic interleaving for a process */
749 static unsigned interleave_nodes(struct mempolicy *policy)
751 unsigned nid, next;
752 struct task_struct *me = current;
754 nid = me->il_next;
755 next = next_node(nid, policy->v.nodes);
756 if (next >= MAX_NUMNODES)
757 next = first_node(policy->v.nodes);
758 me->il_next = next;
759 return nid;
762 /* Do static interleaving for a VMA with known offset. */
763 static unsigned offset_il_node(struct mempolicy *pol,
764 struct vm_area_struct *vma, unsigned long off)
766 unsigned nnodes = nodes_weight(pol->v.nodes);
767 unsigned target = (unsigned)off % nnodes;
768 int c;
769 int nid = -1;
771 c = 0;
772 do {
773 nid = next_node(nid, pol->v.nodes);
774 c++;
775 } while (c <= target);
776 return nid;
779 /* Determine a node number for interleave */
780 static inline unsigned interleave_nid(struct mempolicy *pol,
781 struct vm_area_struct *vma, unsigned long addr, int shift)
783 if (vma) {
784 unsigned long off;
786 off = vma->vm_pgoff;
787 off += (addr - vma->vm_start) >> shift;
788 return offset_il_node(pol, vma, off);
789 } else
790 return interleave_nodes(pol);
793 /* Return a zonelist suitable for a huge page allocation. */
794 struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr)
796 struct mempolicy *pol = get_vma_policy(current, vma, addr);
798 if (pol->policy == MPOL_INTERLEAVE) {
799 unsigned nid;
801 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
802 return NODE_DATA(nid)->node_zonelists + gfp_zone(GFP_HIGHUSER);
804 return zonelist_policy(GFP_HIGHUSER, pol);
807 /* Allocate a page in interleaved policy.
808 Own path because it needs to do special accounting. */
809 static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
810 unsigned nid)
812 struct zonelist *zl;
813 struct page *page;
815 zl = NODE_DATA(nid)->node_zonelists + gfp_zone(gfp);
816 page = __alloc_pages(gfp, order, zl);
817 if (page && page_zone(page) == zl->zones[0]) {
818 zone_pcp(zl->zones[0],get_cpu())->interleave_hit++;
819 put_cpu();
821 return page;
825 * alloc_page_vma - Allocate a page for a VMA.
827 * @gfp:
828 * %GFP_USER user allocation.
829 * %GFP_KERNEL kernel allocations,
830 * %GFP_HIGHMEM highmem/user allocations,
831 * %GFP_FS allocation should not call back into a file system.
832 * %GFP_ATOMIC don't sleep.
834 * @vma: Pointer to VMA or NULL if not available.
835 * @addr: Virtual Address of the allocation. Must be inside the VMA.
837 * This function allocates a page from the kernel page pool and applies
838 * a NUMA policy associated with the VMA or the current process.
839 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
840 * mm_struct of the VMA to prevent it from going away. Should be used for
841 * all allocations for pages that will be mapped into
842 * user space. Returns NULL when no page can be allocated.
844 * Should be called with the mm_sem of the vma hold.
846 struct page *
847 alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
849 struct mempolicy *pol = get_vma_policy(current, vma, addr);
851 cpuset_update_current_mems_allowed();
853 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
854 unsigned nid;
856 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
857 return alloc_page_interleave(gfp, 0, nid);
859 return __alloc_pages(gfp, 0, zonelist_policy(gfp, pol));
863 * alloc_pages_current - Allocate pages.
865 * @gfp:
866 * %GFP_USER user allocation,
867 * %GFP_KERNEL kernel allocation,
868 * %GFP_HIGHMEM highmem allocation,
869 * %GFP_FS don't call back into a file system.
870 * %GFP_ATOMIC don't sleep.
871 * @order: Power of two of allocation size in pages. 0 is a single page.
873 * Allocate a page from the kernel page pool. When not in
874 * interrupt context and apply the current process NUMA policy.
875 * Returns NULL when no page can be allocated.
877 * Don't call cpuset_update_current_mems_allowed() unless
878 * 1) it's ok to take cpuset_sem (can WAIT), and
879 * 2) allocating for current task (not interrupt).
881 struct page *alloc_pages_current(gfp_t gfp, unsigned order)
883 struct mempolicy *pol = current->mempolicy;
885 if ((gfp & __GFP_WAIT) && !in_interrupt())
886 cpuset_update_current_mems_allowed();
887 if (!pol || in_interrupt())
888 pol = &default_policy;
889 if (pol->policy == MPOL_INTERLEAVE)
890 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
891 return __alloc_pages(gfp, order, zonelist_policy(gfp, pol));
893 EXPORT_SYMBOL(alloc_pages_current);
895 /* Slow path of a mempolicy copy */
896 struct mempolicy *__mpol_copy(struct mempolicy *old)
898 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
900 if (!new)
901 return ERR_PTR(-ENOMEM);
902 *new = *old;
903 atomic_set(&new->refcnt, 1);
904 if (new->policy == MPOL_BIND) {
905 int sz = ksize(old->v.zonelist);
906 new->v.zonelist = kmalloc(sz, SLAB_KERNEL);
907 if (!new->v.zonelist) {
908 kmem_cache_free(policy_cache, new);
909 return ERR_PTR(-ENOMEM);
911 memcpy(new->v.zonelist, old->v.zonelist, sz);
913 return new;
916 /* Slow path of a mempolicy comparison */
917 int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
919 if (!a || !b)
920 return 0;
921 if (a->policy != b->policy)
922 return 0;
923 switch (a->policy) {
924 case MPOL_DEFAULT:
925 return 1;
926 case MPOL_INTERLEAVE:
927 return nodes_equal(a->v.nodes, b->v.nodes);
928 case MPOL_PREFERRED:
929 return a->v.preferred_node == b->v.preferred_node;
930 case MPOL_BIND: {
931 int i;
932 for (i = 0; a->v.zonelist->zones[i]; i++)
933 if (a->v.zonelist->zones[i] != b->v.zonelist->zones[i])
934 return 0;
935 return b->v.zonelist->zones[i] == NULL;
937 default:
938 BUG();
939 return 0;
943 /* Slow path of a mpol destructor. */
944 void __mpol_free(struct mempolicy *p)
946 if (!atomic_dec_and_test(&p->refcnt))
947 return;
948 if (p->policy == MPOL_BIND)
949 kfree(p->v.zonelist);
950 p->policy = MPOL_DEFAULT;
951 kmem_cache_free(policy_cache, p);
955 * Shared memory backing store policy support.
957 * Remember policies even when nobody has shared memory mapped.
958 * The policies are kept in Red-Black tree linked from the inode.
959 * They are protected by the sp->lock spinlock, which should be held
960 * for any accesses to the tree.
963 /* lookup first element intersecting start-end */
964 /* Caller holds sp->lock */
965 static struct sp_node *
966 sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
968 struct rb_node *n = sp->root.rb_node;
970 while (n) {
971 struct sp_node *p = rb_entry(n, struct sp_node, nd);
973 if (start >= p->end)
974 n = n->rb_right;
975 else if (end <= p->start)
976 n = n->rb_left;
977 else
978 break;
980 if (!n)
981 return NULL;
982 for (;;) {
983 struct sp_node *w = NULL;
984 struct rb_node *prev = rb_prev(n);
985 if (!prev)
986 break;
987 w = rb_entry(prev, struct sp_node, nd);
988 if (w->end <= start)
989 break;
990 n = prev;
992 return rb_entry(n, struct sp_node, nd);
995 /* Insert a new shared policy into the list. */
996 /* Caller holds sp->lock */
997 static void sp_insert(struct shared_policy *sp, struct sp_node *new)
999 struct rb_node **p = &sp->root.rb_node;
1000 struct rb_node *parent = NULL;
1001 struct sp_node *nd;
1003 while (*p) {
1004 parent = *p;
1005 nd = rb_entry(parent, struct sp_node, nd);
1006 if (new->start < nd->start)
1007 p = &(*p)->rb_left;
1008 else if (new->end > nd->end)
1009 p = &(*p)->rb_right;
1010 else
1011 BUG();
1013 rb_link_node(&new->nd, parent, p);
1014 rb_insert_color(&new->nd, &sp->root);
1015 PDprintk("inserting %lx-%lx: %d\n", new->start, new->end,
1016 new->policy ? new->policy->policy : 0);
1019 /* Find shared policy intersecting idx */
1020 struct mempolicy *
1021 mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1023 struct mempolicy *pol = NULL;
1024 struct sp_node *sn;
1026 if (!sp->root.rb_node)
1027 return NULL;
1028 spin_lock(&sp->lock);
1029 sn = sp_lookup(sp, idx, idx+1);
1030 if (sn) {
1031 mpol_get(sn->policy);
1032 pol = sn->policy;
1034 spin_unlock(&sp->lock);
1035 return pol;
1038 static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1040 PDprintk("deleting %lx-l%x\n", n->start, n->end);
1041 rb_erase(&n->nd, &sp->root);
1042 mpol_free(n->policy);
1043 kmem_cache_free(sn_cache, n);
1046 struct sp_node *
1047 sp_alloc(unsigned long start, unsigned long end, struct mempolicy *pol)
1049 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1051 if (!n)
1052 return NULL;
1053 n->start = start;
1054 n->end = end;
1055 mpol_get(pol);
1056 n->policy = pol;
1057 return n;
1060 /* Replace a policy range. */
1061 static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1062 unsigned long end, struct sp_node *new)
1064 struct sp_node *n, *new2 = NULL;
1066 restart:
1067 spin_lock(&sp->lock);
1068 n = sp_lookup(sp, start, end);
1069 /* Take care of old policies in the same range. */
1070 while (n && n->start < end) {
1071 struct rb_node *next = rb_next(&n->nd);
1072 if (n->start >= start) {
1073 if (n->end <= end)
1074 sp_delete(sp, n);
1075 else
1076 n->start = end;
1077 } else {
1078 /* Old policy spanning whole new range. */
1079 if (n->end > end) {
1080 if (!new2) {
1081 spin_unlock(&sp->lock);
1082 new2 = sp_alloc(end, n->end, n->policy);
1083 if (!new2)
1084 return -ENOMEM;
1085 goto restart;
1087 n->end = start;
1088 sp_insert(sp, new2);
1089 new2 = NULL;
1090 break;
1091 } else
1092 n->end = start;
1094 if (!next)
1095 break;
1096 n = rb_entry(next, struct sp_node, nd);
1098 if (new)
1099 sp_insert(sp, new);
1100 spin_unlock(&sp->lock);
1101 if (new2) {
1102 mpol_free(new2->policy);
1103 kmem_cache_free(sn_cache, new2);
1105 return 0;
1108 int mpol_set_shared_policy(struct shared_policy *info,
1109 struct vm_area_struct *vma, struct mempolicy *npol)
1111 int err;
1112 struct sp_node *new = NULL;
1113 unsigned long sz = vma_pages(vma);
1115 PDprintk("set_shared_policy %lx sz %lu %d %lx\n",
1116 vma->vm_pgoff,
1117 sz, npol? npol->policy : -1,
1118 npol ? nodes_addr(npol->v.nodes)[0] : -1);
1120 if (npol) {
1121 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1122 if (!new)
1123 return -ENOMEM;
1125 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1126 if (err && new)
1127 kmem_cache_free(sn_cache, new);
1128 return err;
1131 /* Free a backing policy store on inode delete. */
1132 void mpol_free_shared_policy(struct shared_policy *p)
1134 struct sp_node *n;
1135 struct rb_node *next;
1137 if (!p->root.rb_node)
1138 return;
1139 spin_lock(&p->lock);
1140 next = rb_first(&p->root);
1141 while (next) {
1142 n = rb_entry(next, struct sp_node, nd);
1143 next = rb_next(&n->nd);
1144 rb_erase(&n->nd, &p->root);
1145 mpol_free(n->policy);
1146 kmem_cache_free(sn_cache, n);
1148 spin_unlock(&p->lock);
1151 /* assumes fs == KERNEL_DS */
1152 void __init numa_policy_init(void)
1154 policy_cache = kmem_cache_create("numa_policy",
1155 sizeof(struct mempolicy),
1156 0, SLAB_PANIC, NULL, NULL);
1158 sn_cache = kmem_cache_create("shared_policy_node",
1159 sizeof(struct sp_node),
1160 0, SLAB_PANIC, NULL, NULL);
1162 /* Set interleaving policy for system init. This way not all
1163 the data structures allocated at system boot end up in node zero. */
1165 if (do_set_mempolicy(MPOL_INTERLEAVE, &node_online_map))
1166 printk("numa_policy_init: interleaving failed\n");
1169 /* Reset policy of current process to default */
1170 void numa_default_policy(void)
1172 do_set_mempolicy(MPOL_DEFAULT, NULL);
1175 /* Migrate a policy to a different set of nodes */
1176 static void rebind_policy(struct mempolicy *pol, const nodemask_t *old,
1177 const nodemask_t *new)
1179 nodemask_t tmp;
1181 if (!pol)
1182 return;
1184 switch (pol->policy) {
1185 case MPOL_DEFAULT:
1186 break;
1187 case MPOL_INTERLEAVE:
1188 nodes_remap(tmp, pol->v.nodes, *old, *new);
1189 pol->v.nodes = tmp;
1190 current->il_next = node_remap(current->il_next, *old, *new);
1191 break;
1192 case MPOL_PREFERRED:
1193 pol->v.preferred_node = node_remap(pol->v.preferred_node,
1194 *old, *new);
1195 break;
1196 case MPOL_BIND: {
1197 nodemask_t nodes;
1198 struct zone **z;
1199 struct zonelist *zonelist;
1201 nodes_clear(nodes);
1202 for (z = pol->v.zonelist->zones; *z; z++)
1203 node_set((*z)->zone_pgdat->node_id, nodes);
1204 nodes_remap(tmp, nodes, *old, *new);
1205 nodes = tmp;
1207 zonelist = bind_zonelist(&nodes);
1209 /* If no mem, then zonelist is NULL and we keep old zonelist.
1210 * If that old zonelist has no remaining mems_allowed nodes,
1211 * then zonelist_policy() will "FALL THROUGH" to MPOL_DEFAULT.
1214 if (zonelist) {
1215 /* Good - got mem - substitute new zonelist */
1216 kfree(pol->v.zonelist);
1217 pol->v.zonelist = zonelist;
1219 break;
1221 default:
1222 BUG();
1223 break;
1228 * Someone moved this task to different nodes. Fixup mempolicies.
1230 * TODO - fixup current->mm->vma and shmfs/tmpfs/hugetlbfs policies as well,
1231 * once we have a cpuset mechanism to mark which cpuset subtree is migrating.
1233 void numa_policy_rebind(const nodemask_t *old, const nodemask_t *new)
1235 rebind_policy(current->mempolicy, old, new);