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
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
22 * bind Only allocate memory on a specific set of nodes,
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
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.
57 fix mmap readahead to honour policy and enable policy for any page cache
59 statistics for bigpages
60 global policy for page cache? currently it uses process policy. Requires
62 handle mremap for shared memory (currently ignored for the policy)
64 make bind policy root only? It can trigger oom much faster and the
65 kernel is not always grateful with that.
68 #include <linux/mempolicy.h>
70 #include <linux/highmem.h>
71 #include <linux/hugetlb.h>
72 #include <linux/kernel.h>
73 #include <linux/sched.h>
74 #include <linux/nodemask.h>
75 #include <linux/cpuset.h>
76 #include <linux/gfp.h>
77 #include <linux/slab.h>
78 #include <linux/string.h>
79 #include <linux/module.h>
80 #include <linux/nsproxy.h>
81 #include <linux/interrupt.h>
82 #include <linux/init.h>
83 #include <linux/compat.h>
84 #include <linux/swap.h>
85 #include <linux/seq_file.h>
86 #include <linux/proc_fs.h>
87 #include <linux/migrate.h>
88 #include <linux/rmap.h>
89 #include <linux/security.h>
90 #include <linux/syscalls.h>
92 #include <asm/tlbflush.h>
93 #include <asm/uaccess.h>
96 #define MPOL_MF_DISCONTIG_OK (MPOL_MF_INTERNAL << 0) /* Skip checks for continuous vmas */
97 #define MPOL_MF_INVERT (MPOL_MF_INTERNAL << 1) /* Invert check for nodemask */
98 #define MPOL_MF_STATS (MPOL_MF_INTERNAL << 2) /* Gather statistics */
100 static struct kmem_cache
*policy_cache
;
101 static struct kmem_cache
*sn_cache
;
103 /* Highest zone. An specific allocation for a zone below that is not
105 enum zone_type policy_zone
= 0;
107 struct mempolicy default_policy
= {
108 .refcnt
= ATOMIC_INIT(1), /* never free it */
109 .policy
= MPOL_DEFAULT
,
112 static const struct mempolicy_operations
{
113 int (*create
)(struct mempolicy
*pol
, const nodemask_t
*nodes
);
114 void (*rebind
)(struct mempolicy
*pol
, const nodemask_t
*nodes
);
115 } mpol_ops
[MPOL_MAX
];
117 /* Check that the nodemask contains at least one populated zone */
118 static int is_valid_nodemask(const nodemask_t
*nodemask
)
122 /* Check that there is something useful in this mask */
125 for_each_node_mask(nd
, *nodemask
) {
128 for (k
= 0; k
<= policy_zone
; k
++) {
129 z
= &NODE_DATA(nd
)->node_zones
[k
];
130 if (z
->present_pages
> 0)
138 static inline int mpol_store_user_nodemask(const struct mempolicy
*pol
)
140 return pol
->flags
& (MPOL_F_STATIC_NODES
| MPOL_F_RELATIVE_NODES
);
143 static void mpol_relative_nodemask(nodemask_t
*ret
, const nodemask_t
*orig
,
144 const nodemask_t
*rel
)
147 nodes_fold(tmp
, *orig
, nodes_weight(*rel
));
148 nodes_onto(*ret
, tmp
, *rel
);
151 static int mpol_new_interleave(struct mempolicy
*pol
, const nodemask_t
*nodes
)
153 if (nodes_empty(*nodes
))
155 pol
->v
.nodes
= *nodes
;
159 static int mpol_new_preferred(struct mempolicy
*pol
, const nodemask_t
*nodes
)
162 pol
->v
.preferred_node
= -1; /* local allocation */
163 else if (nodes_empty(*nodes
))
164 return -EINVAL
; /* no allowed nodes */
166 pol
->v
.preferred_node
= first_node(*nodes
);
170 static int mpol_new_bind(struct mempolicy
*pol
, const nodemask_t
*nodes
)
172 if (!is_valid_nodemask(nodes
))
174 pol
->v
.nodes
= *nodes
;
178 /* Create a new policy */
179 static struct mempolicy
*mpol_new(unsigned short mode
, unsigned short flags
,
182 struct mempolicy
*policy
;
183 nodemask_t cpuset_context_nmask
;
186 pr_debug("setting mode %d flags %d nodes[0] %lx\n",
187 mode
, flags
, nodes
? nodes_addr(*nodes
)[0] : -1);
189 if (mode
== MPOL_DEFAULT
) {
190 if (nodes
&& !nodes_empty(*nodes
))
191 return ERR_PTR(-EINVAL
);
197 * MPOL_PREFERRED cannot be used with MPOL_F_STATIC_NODES or
198 * MPOL_F_RELATIVE_NODES if the nodemask is empty (local allocation).
199 * All other modes require a valid pointer to a non-empty nodemask.
201 if (mode
== MPOL_PREFERRED
) {
202 if (nodes_empty(*nodes
)) {
203 if (((flags
& MPOL_F_STATIC_NODES
) ||
204 (flags
& MPOL_F_RELATIVE_NODES
)))
205 return ERR_PTR(-EINVAL
);
206 nodes
= NULL
; /* flag local alloc */
208 } else if (nodes_empty(*nodes
))
209 return ERR_PTR(-EINVAL
);
210 policy
= kmem_cache_alloc(policy_cache
, GFP_KERNEL
);
212 return ERR_PTR(-ENOMEM
);
213 atomic_set(&policy
->refcnt
, 1);
214 policy
->policy
= mode
;
215 policy
->flags
= flags
;
219 * cpuset related setup doesn't apply to local allocation
221 cpuset_update_task_memory_state();
222 if (flags
& MPOL_F_RELATIVE_NODES
)
223 mpol_relative_nodemask(&cpuset_context_nmask
, nodes
,
224 &cpuset_current_mems_allowed
);
226 nodes_and(cpuset_context_nmask
, *nodes
,
227 cpuset_current_mems_allowed
);
228 if (mpol_store_user_nodemask(policy
))
229 policy
->w
.user_nodemask
= *nodes
;
231 policy
->w
.cpuset_mems_allowed
=
232 cpuset_mems_allowed(current
);
235 ret
= mpol_ops
[mode
].create(policy
,
236 nodes
? &cpuset_context_nmask
: NULL
);
238 kmem_cache_free(policy_cache
, policy
);
244 static void mpol_rebind_default(struct mempolicy
*pol
, const nodemask_t
*nodes
)
248 static void mpol_rebind_nodemask(struct mempolicy
*pol
,
249 const nodemask_t
*nodes
)
253 if (pol
->flags
& MPOL_F_STATIC_NODES
)
254 nodes_and(tmp
, pol
->w
.user_nodemask
, *nodes
);
255 else if (pol
->flags
& MPOL_F_RELATIVE_NODES
)
256 mpol_relative_nodemask(&tmp
, &pol
->w
.user_nodemask
, nodes
);
258 nodes_remap(tmp
, pol
->v
.nodes
, pol
->w
.cpuset_mems_allowed
,
260 pol
->w
.cpuset_mems_allowed
= *nodes
;
264 if (!node_isset(current
->il_next
, tmp
)) {
265 current
->il_next
= next_node(current
->il_next
, tmp
);
266 if (current
->il_next
>= MAX_NUMNODES
)
267 current
->il_next
= first_node(tmp
);
268 if (current
->il_next
>= MAX_NUMNODES
)
269 current
->il_next
= numa_node_id();
273 static void mpol_rebind_preferred(struct mempolicy
*pol
,
274 const nodemask_t
*nodes
)
278 if (pol
->flags
& MPOL_F_STATIC_NODES
) {
279 int node
= first_node(pol
->w
.user_nodemask
);
281 if (node_isset(node
, *nodes
))
282 pol
->v
.preferred_node
= node
;
284 pol
->v
.preferred_node
= -1;
285 } else if (pol
->flags
& MPOL_F_RELATIVE_NODES
) {
286 mpol_relative_nodemask(&tmp
, &pol
->w
.user_nodemask
, nodes
);
287 pol
->v
.preferred_node
= first_node(tmp
);
288 } else if (pol
->v
.preferred_node
!= -1) {
289 pol
->v
.preferred_node
= node_remap(pol
->v
.preferred_node
,
290 pol
->w
.cpuset_mems_allowed
,
292 pol
->w
.cpuset_mems_allowed
= *nodes
;
296 /* Migrate a policy to a different set of nodes */
297 static void mpol_rebind_policy(struct mempolicy
*pol
,
298 const nodemask_t
*newmask
)
302 if (!mpol_store_user_nodemask(pol
) &&
303 nodes_equal(pol
->w
.cpuset_mems_allowed
, *newmask
))
305 mpol_ops
[pol
->policy
].rebind(pol
, newmask
);
309 * Wrapper for mpol_rebind_policy() that just requires task
310 * pointer, and updates task mempolicy.
313 void mpol_rebind_task(struct task_struct
*tsk
, const nodemask_t
*new)
315 mpol_rebind_policy(tsk
->mempolicy
, new);
319 * Rebind each vma in mm to new nodemask.
321 * Call holding a reference to mm. Takes mm->mmap_sem during call.
324 void mpol_rebind_mm(struct mm_struct
*mm
, nodemask_t
*new)
326 struct vm_area_struct
*vma
;
328 down_write(&mm
->mmap_sem
);
329 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
)
330 mpol_rebind_policy(vma
->vm_policy
, new);
331 up_write(&mm
->mmap_sem
);
334 static const struct mempolicy_operations mpol_ops
[MPOL_MAX
] = {
336 .rebind
= mpol_rebind_default
,
338 [MPOL_INTERLEAVE
] = {
339 .create
= mpol_new_interleave
,
340 .rebind
= mpol_rebind_nodemask
,
343 .create
= mpol_new_preferred
,
344 .rebind
= mpol_rebind_preferred
,
347 .create
= mpol_new_bind
,
348 .rebind
= mpol_rebind_nodemask
,
352 static void gather_stats(struct page
*, void *, int pte_dirty
);
353 static void migrate_page_add(struct page
*page
, struct list_head
*pagelist
,
354 unsigned long flags
);
356 /* Scan through pages checking if pages follow certain conditions. */
357 static int check_pte_range(struct vm_area_struct
*vma
, pmd_t
*pmd
,
358 unsigned long addr
, unsigned long end
,
359 const nodemask_t
*nodes
, unsigned long flags
,
366 orig_pte
= pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
371 if (!pte_present(*pte
))
373 page
= vm_normal_page(vma
, addr
, *pte
);
377 * The check for PageReserved here is important to avoid
378 * handling zero pages and other pages that may have been
379 * marked special by the system.
381 * If the PageReserved would not be checked here then f.e.
382 * the location of the zero page could have an influence
383 * on MPOL_MF_STRICT, zero pages would be counted for
384 * the per node stats, and there would be useless attempts
385 * to put zero pages on the migration list.
387 if (PageReserved(page
))
389 nid
= page_to_nid(page
);
390 if (node_isset(nid
, *nodes
) == !!(flags
& MPOL_MF_INVERT
))
393 if (flags
& MPOL_MF_STATS
)
394 gather_stats(page
, private, pte_dirty(*pte
));
395 else if (flags
& (MPOL_MF_MOVE
| MPOL_MF_MOVE_ALL
))
396 migrate_page_add(page
, private, flags
);
399 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
400 pte_unmap_unlock(orig_pte
, ptl
);
404 static inline int check_pmd_range(struct vm_area_struct
*vma
, pud_t
*pud
,
405 unsigned long addr
, unsigned long end
,
406 const nodemask_t
*nodes
, unsigned long flags
,
412 pmd
= pmd_offset(pud
, addr
);
414 next
= pmd_addr_end(addr
, end
);
415 if (pmd_none_or_clear_bad(pmd
))
417 if (check_pte_range(vma
, pmd
, addr
, next
, nodes
,
420 } while (pmd
++, addr
= next
, addr
!= end
);
424 static inline int check_pud_range(struct vm_area_struct
*vma
, pgd_t
*pgd
,
425 unsigned long addr
, unsigned long end
,
426 const nodemask_t
*nodes
, unsigned long flags
,
432 pud
= pud_offset(pgd
, addr
);
434 next
= pud_addr_end(addr
, end
);
435 if (pud_none_or_clear_bad(pud
))
437 if (check_pmd_range(vma
, pud
, addr
, next
, nodes
,
440 } while (pud
++, addr
= next
, addr
!= end
);
444 static inline int check_pgd_range(struct vm_area_struct
*vma
,
445 unsigned long addr
, unsigned long end
,
446 const nodemask_t
*nodes
, unsigned long flags
,
452 pgd
= pgd_offset(vma
->vm_mm
, addr
);
454 next
= pgd_addr_end(addr
, end
);
455 if (pgd_none_or_clear_bad(pgd
))
457 if (check_pud_range(vma
, pgd
, addr
, next
, nodes
,
460 } while (pgd
++, addr
= next
, addr
!= end
);
465 * Check if all pages in a range are on a set of nodes.
466 * If pagelist != NULL then isolate pages from the LRU and
467 * put them on the pagelist.
469 static struct vm_area_struct
*
470 check_range(struct mm_struct
*mm
, unsigned long start
, unsigned long end
,
471 const nodemask_t
*nodes
, unsigned long flags
, void *private)
474 struct vm_area_struct
*first
, *vma
, *prev
;
476 if (flags
& (MPOL_MF_MOVE
| MPOL_MF_MOVE_ALL
)) {
478 err
= migrate_prep();
483 first
= find_vma(mm
, start
);
485 return ERR_PTR(-EFAULT
);
487 for (vma
= first
; vma
&& vma
->vm_start
< end
; vma
= vma
->vm_next
) {
488 if (!(flags
& MPOL_MF_DISCONTIG_OK
)) {
489 if (!vma
->vm_next
&& vma
->vm_end
< end
)
490 return ERR_PTR(-EFAULT
);
491 if (prev
&& prev
->vm_end
< vma
->vm_start
)
492 return ERR_PTR(-EFAULT
);
494 if (!is_vm_hugetlb_page(vma
) &&
495 ((flags
& MPOL_MF_STRICT
) ||
496 ((flags
& (MPOL_MF_MOVE
| MPOL_MF_MOVE_ALL
)) &&
497 vma_migratable(vma
)))) {
498 unsigned long endvma
= vma
->vm_end
;
502 if (vma
->vm_start
> start
)
503 start
= vma
->vm_start
;
504 err
= check_pgd_range(vma
, start
, endvma
, nodes
,
507 first
= ERR_PTR(err
);
516 /* Apply policy to a single VMA */
517 static int policy_vma(struct vm_area_struct
*vma
, struct mempolicy
*new)
520 struct mempolicy
*old
= vma
->vm_policy
;
522 pr_debug("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
523 vma
->vm_start
, vma
->vm_end
, vma
->vm_pgoff
,
524 vma
->vm_ops
, vma
->vm_file
,
525 vma
->vm_ops
? vma
->vm_ops
->set_policy
: NULL
);
527 if (vma
->vm_ops
&& vma
->vm_ops
->set_policy
)
528 err
= vma
->vm_ops
->set_policy(vma
, new);
531 vma
->vm_policy
= new;
537 /* Step 2: apply policy to a range and do splits. */
538 static int mbind_range(struct vm_area_struct
*vma
, unsigned long start
,
539 unsigned long end
, struct mempolicy
*new)
541 struct vm_area_struct
*next
;
545 for (; vma
&& vma
->vm_start
< end
; vma
= next
) {
547 if (vma
->vm_start
< start
)
548 err
= split_vma(vma
->vm_mm
, vma
, start
, 1);
549 if (!err
&& vma
->vm_end
> end
)
550 err
= split_vma(vma
->vm_mm
, vma
, end
, 0);
552 err
= policy_vma(vma
, new);
560 * Update task->flags PF_MEMPOLICY bit: set iff non-default
561 * mempolicy. Allows more rapid checking of this (combined perhaps
562 * with other PF_* flag bits) on memory allocation hot code paths.
564 * If called from outside this file, the task 'p' should -only- be
565 * a newly forked child not yet visible on the task list, because
566 * manipulating the task flags of a visible task is not safe.
568 * The above limitation is why this routine has the funny name
569 * mpol_fix_fork_child_flag().
571 * It is also safe to call this with a task pointer of current,
572 * which the static wrapper mpol_set_task_struct_flag() does,
573 * for use within this file.
576 void mpol_fix_fork_child_flag(struct task_struct
*p
)
579 p
->flags
|= PF_MEMPOLICY
;
581 p
->flags
&= ~PF_MEMPOLICY
;
584 static void mpol_set_task_struct_flag(void)
586 mpol_fix_fork_child_flag(current
);
589 /* Set the process memory policy */
590 static long do_set_mempolicy(unsigned short mode
, unsigned short flags
,
593 struct mempolicy
*new;
595 new = mpol_new(mode
, flags
, nodes
);
598 mpol_free(current
->mempolicy
);
599 current
->mempolicy
= new;
600 mpol_set_task_struct_flag();
601 if (new && new->policy
== MPOL_INTERLEAVE
&&
602 nodes_weight(new->v
.nodes
))
603 current
->il_next
= first_node(new->v
.nodes
);
607 /* Fill a zone bitmap for a policy */
608 static void get_zonemask(struct mempolicy
*p
, nodemask_t
*nodes
)
616 case MPOL_INTERLEAVE
:
620 /* or use current node instead of memory_map? */
621 if (p
->v
.preferred_node
< 0)
622 *nodes
= node_states
[N_HIGH_MEMORY
];
624 node_set(p
->v
.preferred_node
, *nodes
);
631 static int lookup_node(struct mm_struct
*mm
, unsigned long addr
)
636 err
= get_user_pages(current
, mm
, addr
& PAGE_MASK
, 1, 0, 0, &p
, NULL
);
638 err
= page_to_nid(p
);
644 /* Retrieve NUMA policy */
645 static long do_get_mempolicy(int *policy
, nodemask_t
*nmask
,
646 unsigned long addr
, unsigned long flags
)
649 struct mm_struct
*mm
= current
->mm
;
650 struct vm_area_struct
*vma
= NULL
;
651 struct mempolicy
*pol
= current
->mempolicy
;
653 cpuset_update_task_memory_state();
655 ~(unsigned long)(MPOL_F_NODE
|MPOL_F_ADDR
|MPOL_F_MEMS_ALLOWED
))
658 if (flags
& MPOL_F_MEMS_ALLOWED
) {
659 if (flags
& (MPOL_F_NODE
|MPOL_F_ADDR
))
661 *policy
= 0; /* just so it's initialized */
662 *nmask
= cpuset_current_mems_allowed
;
666 if (flags
& MPOL_F_ADDR
) {
667 down_read(&mm
->mmap_sem
);
668 vma
= find_vma_intersection(mm
, addr
, addr
+1);
670 up_read(&mm
->mmap_sem
);
673 if (vma
->vm_ops
&& vma
->vm_ops
->get_policy
)
674 pol
= vma
->vm_ops
->get_policy(vma
, addr
);
676 pol
= vma
->vm_policy
;
681 pol
= &default_policy
;
683 if (flags
& MPOL_F_NODE
) {
684 if (flags
& MPOL_F_ADDR
) {
685 err
= lookup_node(mm
, addr
);
689 } else if (pol
== current
->mempolicy
&&
690 pol
->policy
== MPOL_INTERLEAVE
) {
691 *policy
= current
->il_next
;
697 *policy
= pol
->policy
| pol
->flags
;
700 up_read(¤t
->mm
->mmap_sem
);
706 get_zonemask(pol
, nmask
);
710 up_read(¤t
->mm
->mmap_sem
);
714 #ifdef CONFIG_MIGRATION
718 static void migrate_page_add(struct page
*page
, struct list_head
*pagelist
,
722 * Avoid migrating a page that is shared with others.
724 if ((flags
& MPOL_MF_MOVE_ALL
) || page_mapcount(page
) == 1)
725 isolate_lru_page(page
, pagelist
);
728 static struct page
*new_node_page(struct page
*page
, unsigned long node
, int **x
)
730 return alloc_pages_node(node
, GFP_HIGHUSER_MOVABLE
, 0);
734 * Migrate pages from one node to a target node.
735 * Returns error or the number of pages not migrated.
737 static int migrate_to_node(struct mm_struct
*mm
, int source
, int dest
,
745 node_set(source
, nmask
);
747 check_range(mm
, mm
->mmap
->vm_start
, TASK_SIZE
, &nmask
,
748 flags
| MPOL_MF_DISCONTIG_OK
, &pagelist
);
750 if (!list_empty(&pagelist
))
751 err
= migrate_pages(&pagelist
, new_node_page
, dest
);
757 * Move pages between the two nodesets so as to preserve the physical
758 * layout as much as possible.
760 * Returns the number of page that could not be moved.
762 int do_migrate_pages(struct mm_struct
*mm
,
763 const nodemask_t
*from_nodes
, const nodemask_t
*to_nodes
, int flags
)
770 down_read(&mm
->mmap_sem
);
772 err
= migrate_vmas(mm
, from_nodes
, to_nodes
, flags
);
777 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
778 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
779 * bit in 'tmp', and return that <source, dest> pair for migration.
780 * The pair of nodemasks 'to' and 'from' define the map.
782 * If no pair of bits is found that way, fallback to picking some
783 * pair of 'source' and 'dest' bits that are not the same. If the
784 * 'source' and 'dest' bits are the same, this represents a node
785 * that will be migrating to itself, so no pages need move.
787 * If no bits are left in 'tmp', or if all remaining bits left
788 * in 'tmp' correspond to the same bit in 'to', return false
789 * (nothing left to migrate).
791 * This lets us pick a pair of nodes to migrate between, such that
792 * if possible the dest node is not already occupied by some other
793 * source node, minimizing the risk of overloading the memory on a
794 * node that would happen if we migrated incoming memory to a node
795 * before migrating outgoing memory source that same node.
797 * A single scan of tmp is sufficient. As we go, we remember the
798 * most recent <s, d> pair that moved (s != d). If we find a pair
799 * that not only moved, but what's better, moved to an empty slot
800 * (d is not set in tmp), then we break out then, with that pair.
801 * Otherwise when we finish scannng from_tmp, we at least have the
802 * most recent <s, d> pair that moved. If we get all the way through
803 * the scan of tmp without finding any node that moved, much less
804 * moved to an empty node, then there is nothing left worth migrating.
808 while (!nodes_empty(tmp
)) {
813 for_each_node_mask(s
, tmp
) {
814 d
= node_remap(s
, *from_nodes
, *to_nodes
);
818 source
= s
; /* Node moved. Memorize */
821 /* dest not in remaining from nodes? */
822 if (!node_isset(dest
, tmp
))
828 node_clear(source
, tmp
);
829 err
= migrate_to_node(mm
, source
, dest
, flags
);
836 up_read(&mm
->mmap_sem
);
844 * Allocate a new page for page migration based on vma policy.
845 * Start assuming that page is mapped by vma pointed to by @private.
846 * Search forward from there, if not. N.B., this assumes that the
847 * list of pages handed to migrate_pages()--which is how we get here--
848 * is in virtual address order.
850 static struct page
*new_vma_page(struct page
*page
, unsigned long private, int **x
)
852 struct vm_area_struct
*vma
= (struct vm_area_struct
*)private;
853 unsigned long uninitialized_var(address
);
856 address
= page_address_in_vma(page
, vma
);
857 if (address
!= -EFAULT
)
863 * if !vma, alloc_page_vma() will use task or system default policy
865 return alloc_page_vma(GFP_HIGHUSER_MOVABLE
, vma
, address
);
869 static void migrate_page_add(struct page
*page
, struct list_head
*pagelist
,
874 int do_migrate_pages(struct mm_struct
*mm
,
875 const nodemask_t
*from_nodes
, const nodemask_t
*to_nodes
, int flags
)
880 static struct page
*new_vma_page(struct page
*page
, unsigned long private, int **x
)
886 static long do_mbind(unsigned long start
, unsigned long len
,
887 unsigned short mode
, unsigned short mode_flags
,
888 nodemask_t
*nmask
, unsigned long flags
)
890 struct vm_area_struct
*vma
;
891 struct mm_struct
*mm
= current
->mm
;
892 struct mempolicy
*new;
897 if (flags
& ~(unsigned long)(MPOL_MF_STRICT
|
898 MPOL_MF_MOVE
| MPOL_MF_MOVE_ALL
))
900 if ((flags
& MPOL_MF_MOVE_ALL
) && !capable(CAP_SYS_NICE
))
903 if (start
& ~PAGE_MASK
)
906 if (mode
== MPOL_DEFAULT
)
907 flags
&= ~MPOL_MF_STRICT
;
909 len
= (len
+ PAGE_SIZE
- 1) & PAGE_MASK
;
917 new = mpol_new(mode
, mode_flags
, nmask
);
922 * If we are using the default policy then operation
923 * on discontinuous address spaces is okay after all
926 flags
|= MPOL_MF_DISCONTIG_OK
;
928 pr_debug("mbind %lx-%lx mode:%d flags:%d nodes:%lx\n",
929 start
, start
+ len
, mode
, mode_flags
,
930 nmask
? nodes_addr(*nmask
)[0] : -1);
932 down_write(&mm
->mmap_sem
);
933 vma
= check_range(mm
, start
, end
, nmask
,
934 flags
| MPOL_MF_INVERT
, &pagelist
);
940 err
= mbind_range(vma
, start
, end
, new);
942 if (!list_empty(&pagelist
))
943 nr_failed
= migrate_pages(&pagelist
, new_vma_page
,
946 if (!err
&& nr_failed
&& (flags
& MPOL_MF_STRICT
))
950 up_write(&mm
->mmap_sem
);
956 * User space interface with variable sized bitmaps for nodelists.
959 /* Copy a node mask from user space. */
960 static int get_nodes(nodemask_t
*nodes
, const unsigned long __user
*nmask
,
961 unsigned long maxnode
)
964 unsigned long nlongs
;
965 unsigned long endmask
;
969 if (maxnode
== 0 || !nmask
)
971 if (maxnode
> PAGE_SIZE
*BITS_PER_BYTE
)
974 nlongs
= BITS_TO_LONGS(maxnode
);
975 if ((maxnode
% BITS_PER_LONG
) == 0)
978 endmask
= (1UL << (maxnode
% BITS_PER_LONG
)) - 1;
980 /* When the user specified more nodes than supported just check
981 if the non supported part is all zero. */
982 if (nlongs
> BITS_TO_LONGS(MAX_NUMNODES
)) {
983 if (nlongs
> PAGE_SIZE
/sizeof(long))
985 for (k
= BITS_TO_LONGS(MAX_NUMNODES
); k
< nlongs
; k
++) {
987 if (get_user(t
, nmask
+ k
))
989 if (k
== nlongs
- 1) {
995 nlongs
= BITS_TO_LONGS(MAX_NUMNODES
);
999 if (copy_from_user(nodes_addr(*nodes
), nmask
, nlongs
*sizeof(unsigned long)))
1001 nodes_addr(*nodes
)[nlongs
-1] &= endmask
;
1005 /* Copy a kernel node mask to user space */
1006 static int copy_nodes_to_user(unsigned long __user
*mask
, unsigned long maxnode
,
1009 unsigned long copy
= ALIGN(maxnode
-1, 64) / 8;
1010 const int nbytes
= BITS_TO_LONGS(MAX_NUMNODES
) * sizeof(long);
1012 if (copy
> nbytes
) {
1013 if (copy
> PAGE_SIZE
)
1015 if (clear_user((char __user
*)mask
+ nbytes
, copy
- nbytes
))
1019 return copy_to_user(mask
, nodes_addr(*nodes
), copy
) ? -EFAULT
: 0;
1022 asmlinkage
long sys_mbind(unsigned long start
, unsigned long len
,
1024 unsigned long __user
*nmask
, unsigned long maxnode
,
1029 unsigned short mode_flags
;
1031 mode_flags
= mode
& MPOL_MODE_FLAGS
;
1032 mode
&= ~MPOL_MODE_FLAGS
;
1033 if (mode
>= MPOL_MAX
)
1035 if ((mode_flags
& MPOL_F_STATIC_NODES
) &&
1036 (mode_flags
& MPOL_F_RELATIVE_NODES
))
1038 err
= get_nodes(&nodes
, nmask
, maxnode
);
1041 return do_mbind(start
, len
, mode
, mode_flags
, &nodes
, flags
);
1044 /* Set the process memory policy */
1045 asmlinkage
long sys_set_mempolicy(int mode
, unsigned long __user
*nmask
,
1046 unsigned long maxnode
)
1050 unsigned short flags
;
1052 flags
= mode
& MPOL_MODE_FLAGS
;
1053 mode
&= ~MPOL_MODE_FLAGS
;
1054 if ((unsigned int)mode
>= MPOL_MAX
)
1056 if ((flags
& MPOL_F_STATIC_NODES
) && (flags
& MPOL_F_RELATIVE_NODES
))
1058 err
= get_nodes(&nodes
, nmask
, maxnode
);
1061 return do_set_mempolicy(mode
, flags
, &nodes
);
1064 asmlinkage
long sys_migrate_pages(pid_t pid
, unsigned long maxnode
,
1065 const unsigned long __user
*old_nodes
,
1066 const unsigned long __user
*new_nodes
)
1068 struct mm_struct
*mm
;
1069 struct task_struct
*task
;
1072 nodemask_t task_nodes
;
1075 err
= get_nodes(&old
, old_nodes
, maxnode
);
1079 err
= get_nodes(&new, new_nodes
, maxnode
);
1083 /* Find the mm_struct */
1084 read_lock(&tasklist_lock
);
1085 task
= pid
? find_task_by_vpid(pid
) : current
;
1087 read_unlock(&tasklist_lock
);
1090 mm
= get_task_mm(task
);
1091 read_unlock(&tasklist_lock
);
1097 * Check if this process has the right to modify the specified
1098 * process. The right exists if the process has administrative
1099 * capabilities, superuser privileges or the same
1100 * userid as the target process.
1102 if ((current
->euid
!= task
->suid
) && (current
->euid
!= task
->uid
) &&
1103 (current
->uid
!= task
->suid
) && (current
->uid
!= task
->uid
) &&
1104 !capable(CAP_SYS_NICE
)) {
1109 task_nodes
= cpuset_mems_allowed(task
);
1110 /* Is the user allowed to access the target nodes? */
1111 if (!nodes_subset(new, task_nodes
) && !capable(CAP_SYS_NICE
)) {
1116 if (!nodes_subset(new, node_states
[N_HIGH_MEMORY
])) {
1121 err
= security_task_movememory(task
);
1125 err
= do_migrate_pages(mm
, &old
, &new,
1126 capable(CAP_SYS_NICE
) ? MPOL_MF_MOVE_ALL
: MPOL_MF_MOVE
);
1133 /* Retrieve NUMA policy */
1134 asmlinkage
long sys_get_mempolicy(int __user
*policy
,
1135 unsigned long __user
*nmask
,
1136 unsigned long maxnode
,
1137 unsigned long addr
, unsigned long flags
)
1140 int uninitialized_var(pval
);
1143 if (nmask
!= NULL
&& maxnode
< MAX_NUMNODES
)
1146 err
= do_get_mempolicy(&pval
, &nodes
, addr
, flags
);
1151 if (policy
&& put_user(pval
, policy
))
1155 err
= copy_nodes_to_user(nmask
, maxnode
, &nodes
);
1160 #ifdef CONFIG_COMPAT
1162 asmlinkage
long compat_sys_get_mempolicy(int __user
*policy
,
1163 compat_ulong_t __user
*nmask
,
1164 compat_ulong_t maxnode
,
1165 compat_ulong_t addr
, compat_ulong_t flags
)
1168 unsigned long __user
*nm
= NULL
;
1169 unsigned long nr_bits
, alloc_size
;
1170 DECLARE_BITMAP(bm
, MAX_NUMNODES
);
1172 nr_bits
= min_t(unsigned long, maxnode
-1, MAX_NUMNODES
);
1173 alloc_size
= ALIGN(nr_bits
, BITS_PER_LONG
) / 8;
1176 nm
= compat_alloc_user_space(alloc_size
);
1178 err
= sys_get_mempolicy(policy
, nm
, nr_bits
+1, addr
, flags
);
1180 if (!err
&& nmask
) {
1181 err
= copy_from_user(bm
, nm
, alloc_size
);
1182 /* ensure entire bitmap is zeroed */
1183 err
|= clear_user(nmask
, ALIGN(maxnode
-1, 8) / 8);
1184 err
|= compat_put_bitmap(nmask
, bm
, nr_bits
);
1190 asmlinkage
long compat_sys_set_mempolicy(int mode
, compat_ulong_t __user
*nmask
,
1191 compat_ulong_t maxnode
)
1194 unsigned long __user
*nm
= NULL
;
1195 unsigned long nr_bits
, alloc_size
;
1196 DECLARE_BITMAP(bm
, MAX_NUMNODES
);
1198 nr_bits
= min_t(unsigned long, maxnode
-1, MAX_NUMNODES
);
1199 alloc_size
= ALIGN(nr_bits
, BITS_PER_LONG
) / 8;
1202 err
= compat_get_bitmap(bm
, nmask
, nr_bits
);
1203 nm
= compat_alloc_user_space(alloc_size
);
1204 err
|= copy_to_user(nm
, bm
, alloc_size
);
1210 return sys_set_mempolicy(mode
, nm
, nr_bits
+1);
1213 asmlinkage
long compat_sys_mbind(compat_ulong_t start
, compat_ulong_t len
,
1214 compat_ulong_t mode
, compat_ulong_t __user
*nmask
,
1215 compat_ulong_t maxnode
, compat_ulong_t flags
)
1218 unsigned long __user
*nm
= NULL
;
1219 unsigned long nr_bits
, alloc_size
;
1222 nr_bits
= min_t(unsigned long, maxnode
-1, MAX_NUMNODES
);
1223 alloc_size
= ALIGN(nr_bits
, BITS_PER_LONG
) / 8;
1226 err
= compat_get_bitmap(nodes_addr(bm
), nmask
, nr_bits
);
1227 nm
= compat_alloc_user_space(alloc_size
);
1228 err
|= copy_to_user(nm
, nodes_addr(bm
), alloc_size
);
1234 return sys_mbind(start
, len
, mode
, nm
, nr_bits
+1, flags
);
1240 * get_vma_policy(@task, @vma, @addr)
1241 * @task - task for fallback if vma policy == default
1242 * @vma - virtual memory area whose policy is sought
1243 * @addr - address in @vma for shared policy lookup
1245 * Returns effective policy for a VMA at specified address.
1246 * Falls back to @task or system default policy, as necessary.
1247 * Returned policy has extra reference count if shared, vma,
1248 * or some other task's policy [show_numa_maps() can pass
1249 * @task != current]. It is the caller's responsibility to
1250 * free the reference in these cases.
1252 static struct mempolicy
* get_vma_policy(struct task_struct
*task
,
1253 struct vm_area_struct
*vma
, unsigned long addr
)
1255 struct mempolicy
*pol
= task
->mempolicy
;
1259 if (vma
->vm_ops
&& vma
->vm_ops
->get_policy
) {
1260 pol
= vma
->vm_ops
->get_policy(vma
, addr
);
1261 shared_pol
= 1; /* if pol non-NULL, add ref below */
1262 } else if (vma
->vm_policy
&&
1263 vma
->vm_policy
->policy
!= MPOL_DEFAULT
)
1264 pol
= vma
->vm_policy
;
1267 pol
= &default_policy
;
1268 else if (!shared_pol
&& pol
!= current
->mempolicy
)
1269 mpol_get(pol
); /* vma or other task's policy */
1273 /* Return a nodemask representing a mempolicy */
1274 static nodemask_t
*nodemask_policy(gfp_t gfp
, struct mempolicy
*policy
)
1276 /* Lower zones don't get a nodemask applied for MPOL_BIND */
1277 if (unlikely(policy
->policy
== MPOL_BIND
) &&
1278 gfp_zone(gfp
) >= policy_zone
&&
1279 cpuset_nodemask_valid_mems_allowed(&policy
->v
.nodes
))
1280 return &policy
->v
.nodes
;
1285 /* Return a zonelist representing a mempolicy */
1286 static struct zonelist
*zonelist_policy(gfp_t gfp
, struct mempolicy
*policy
)
1290 switch (policy
->policy
) {
1291 case MPOL_PREFERRED
:
1292 nd
= policy
->v
.preferred_node
;
1294 nd
= numa_node_id();
1298 * Normally, MPOL_BIND allocations node-local are node-local
1299 * within the allowed nodemask. However, if __GFP_THISNODE is
1300 * set and the current node is part of the mask, we use the
1301 * the zonelist for the first node in the mask instead.
1303 nd
= numa_node_id();
1304 if (unlikely(gfp
& __GFP_THISNODE
) &&
1305 unlikely(!node_isset(nd
, policy
->v
.nodes
)))
1306 nd
= first_node(policy
->v
.nodes
);
1308 case MPOL_INTERLEAVE
: /* should not happen */
1310 nd
= numa_node_id();
1316 return node_zonelist(nd
, gfp
);
1319 /* Do dynamic interleaving for a process */
1320 static unsigned interleave_nodes(struct mempolicy
*policy
)
1323 struct task_struct
*me
= current
;
1326 next
= next_node(nid
, policy
->v
.nodes
);
1327 if (next
>= MAX_NUMNODES
)
1328 next
= first_node(policy
->v
.nodes
);
1329 if (next
< MAX_NUMNODES
)
1335 * Depending on the memory policy provide a node from which to allocate the
1338 unsigned slab_node(struct mempolicy
*policy
)
1340 unsigned short pol
= policy
? policy
->policy
: MPOL_DEFAULT
;
1343 case MPOL_INTERLEAVE
:
1344 return interleave_nodes(policy
);
1348 * Follow bind policy behavior and start allocation at the
1351 struct zonelist
*zonelist
;
1353 enum zone_type highest_zoneidx
= gfp_zone(GFP_KERNEL
);
1354 zonelist
= &NODE_DATA(numa_node_id())->node_zonelists
[0];
1355 (void)first_zones_zonelist(zonelist
, highest_zoneidx
,
1361 case MPOL_PREFERRED
:
1362 if (policy
->v
.preferred_node
>= 0)
1363 return policy
->v
.preferred_node
;
1367 return numa_node_id();
1371 /* Do static interleaving for a VMA with known offset. */
1372 static unsigned offset_il_node(struct mempolicy
*pol
,
1373 struct vm_area_struct
*vma
, unsigned long off
)
1375 unsigned nnodes
= nodes_weight(pol
->v
.nodes
);
1381 return numa_node_id();
1382 target
= (unsigned int)off
% nnodes
;
1385 nid
= next_node(nid
, pol
->v
.nodes
);
1387 } while (c
<= target
);
1391 /* Determine a node number for interleave */
1392 static inline unsigned interleave_nid(struct mempolicy
*pol
,
1393 struct vm_area_struct
*vma
, unsigned long addr
, int shift
)
1399 * for small pages, there is no difference between
1400 * shift and PAGE_SHIFT, so the bit-shift is safe.
1401 * for huge pages, since vm_pgoff is in units of small
1402 * pages, we need to shift off the always 0 bits to get
1405 BUG_ON(shift
< PAGE_SHIFT
);
1406 off
= vma
->vm_pgoff
>> (shift
- PAGE_SHIFT
);
1407 off
+= (addr
- vma
->vm_start
) >> shift
;
1408 return offset_il_node(pol
, vma
, off
);
1410 return interleave_nodes(pol
);
1413 #ifdef CONFIG_HUGETLBFS
1415 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1416 * @vma = virtual memory area whose policy is sought
1417 * @addr = address in @vma for shared policy lookup and interleave policy
1418 * @gfp_flags = for requested zone
1419 * @mpol = pointer to mempolicy pointer for reference counted mempolicy
1420 * @nodemask = pointer to nodemask pointer for MPOL_BIND nodemask
1422 * Returns a zonelist suitable for a huge page allocation.
1423 * If the effective policy is 'BIND, returns pointer to local node's zonelist,
1424 * and a pointer to the mempolicy's @nodemask for filtering the zonelist.
1425 * If it is also a policy for which get_vma_policy() returns an extra
1426 * reference, we must hold that reference until after the allocation.
1427 * In that case, return policy via @mpol so hugetlb allocation can drop
1428 * the reference. For non-'BIND referenced policies, we can/do drop the
1429 * reference here, so the caller doesn't need to know about the special case
1430 * for default and current task policy.
1432 struct zonelist
*huge_zonelist(struct vm_area_struct
*vma
, unsigned long addr
,
1433 gfp_t gfp_flags
, struct mempolicy
**mpol
,
1434 nodemask_t
**nodemask
)
1436 struct mempolicy
*pol
= get_vma_policy(current
, vma
, addr
);
1437 struct zonelist
*zl
;
1439 *mpol
= NULL
; /* probably no unref needed */
1440 *nodemask
= NULL
; /* assume !MPOL_BIND */
1441 if (pol
->policy
== MPOL_BIND
) {
1442 *nodemask
= &pol
->v
.nodes
;
1443 } else if (pol
->policy
== MPOL_INTERLEAVE
) {
1446 nid
= interleave_nid(pol
, vma
, addr
, HPAGE_SHIFT
);
1447 if (unlikely(pol
!= &default_policy
&&
1448 pol
!= current
->mempolicy
))
1449 __mpol_free(pol
); /* finished with pol */
1450 return node_zonelist(nid
, gfp_flags
);
1453 zl
= zonelist_policy(GFP_HIGHUSER
, pol
);
1454 if (unlikely(pol
!= &default_policy
&& pol
!= current
->mempolicy
)) {
1455 if (pol
->policy
!= MPOL_BIND
)
1456 __mpol_free(pol
); /* finished with pol */
1458 *mpol
= pol
; /* unref needed after allocation */
1464 /* Allocate a page in interleaved policy.
1465 Own path because it needs to do special accounting. */
1466 static struct page
*alloc_page_interleave(gfp_t gfp
, unsigned order
,
1469 struct zonelist
*zl
;
1472 zl
= node_zonelist(nid
, gfp
);
1473 page
= __alloc_pages(gfp
, order
, zl
);
1474 if (page
&& page_zone(page
) == zonelist_zone(&zl
->_zonerefs
[0]))
1475 inc_zone_page_state(page
, NUMA_INTERLEAVE_HIT
);
1480 * alloc_page_vma - Allocate a page for a VMA.
1483 * %GFP_USER user allocation.
1484 * %GFP_KERNEL kernel allocations,
1485 * %GFP_HIGHMEM highmem/user allocations,
1486 * %GFP_FS allocation should not call back into a file system.
1487 * %GFP_ATOMIC don't sleep.
1489 * @vma: Pointer to VMA or NULL if not available.
1490 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1492 * This function allocates a page from the kernel page pool and applies
1493 * a NUMA policy associated with the VMA or the current process.
1494 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1495 * mm_struct of the VMA to prevent it from going away. Should be used for
1496 * all allocations for pages that will be mapped into
1497 * user space. Returns NULL when no page can be allocated.
1499 * Should be called with the mm_sem of the vma hold.
1502 alloc_page_vma(gfp_t gfp
, struct vm_area_struct
*vma
, unsigned long addr
)
1504 struct mempolicy
*pol
= get_vma_policy(current
, vma
, addr
);
1505 struct zonelist
*zl
;
1507 cpuset_update_task_memory_state();
1509 if (unlikely(pol
->policy
== MPOL_INTERLEAVE
)) {
1512 nid
= interleave_nid(pol
, vma
, addr
, PAGE_SHIFT
);
1513 if (unlikely(pol
!= &default_policy
&&
1514 pol
!= current
->mempolicy
))
1515 __mpol_free(pol
); /* finished with pol */
1516 return alloc_page_interleave(gfp
, 0, nid
);
1518 zl
= zonelist_policy(gfp
, pol
);
1519 if (pol
!= &default_policy
&& pol
!= current
->mempolicy
) {
1521 * slow path: ref counted policy -- shared or vma
1523 struct page
*page
= __alloc_pages_nodemask(gfp
, 0,
1524 zl
, nodemask_policy(gfp
, pol
));
1529 * fast path: default or task policy
1531 return __alloc_pages_nodemask(gfp
, 0, zl
, nodemask_policy(gfp
, pol
));
1535 * alloc_pages_current - Allocate pages.
1538 * %GFP_USER user allocation,
1539 * %GFP_KERNEL kernel allocation,
1540 * %GFP_HIGHMEM highmem allocation,
1541 * %GFP_FS don't call back into a file system.
1542 * %GFP_ATOMIC don't sleep.
1543 * @order: Power of two of allocation size in pages. 0 is a single page.
1545 * Allocate a page from the kernel page pool. When not in
1546 * interrupt context and apply the current process NUMA policy.
1547 * Returns NULL when no page can be allocated.
1549 * Don't call cpuset_update_task_memory_state() unless
1550 * 1) it's ok to take cpuset_sem (can WAIT), and
1551 * 2) allocating for current task (not interrupt).
1553 struct page
*alloc_pages_current(gfp_t gfp
, unsigned order
)
1555 struct mempolicy
*pol
= current
->mempolicy
;
1557 if ((gfp
& __GFP_WAIT
) && !in_interrupt())
1558 cpuset_update_task_memory_state();
1559 if (!pol
|| in_interrupt() || (gfp
& __GFP_THISNODE
))
1560 pol
= &default_policy
;
1561 if (pol
->policy
== MPOL_INTERLEAVE
)
1562 return alloc_page_interleave(gfp
, order
, interleave_nodes(pol
));
1563 return __alloc_pages_nodemask(gfp
, order
,
1564 zonelist_policy(gfp
, pol
), nodemask_policy(gfp
, pol
));
1566 EXPORT_SYMBOL(alloc_pages_current
);
1569 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1570 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1571 * with the mems_allowed returned by cpuset_mems_allowed(). This
1572 * keeps mempolicies cpuset relative after its cpuset moves. See
1573 * further kernel/cpuset.c update_nodemask().
1576 /* Slow path of a mempolicy copy */
1577 struct mempolicy
*__mpol_copy(struct mempolicy
*old
)
1579 struct mempolicy
*new = kmem_cache_alloc(policy_cache
, GFP_KERNEL
);
1582 return ERR_PTR(-ENOMEM
);
1583 if (current_cpuset_is_being_rebound()) {
1584 nodemask_t mems
= cpuset_mems_allowed(current
);
1585 mpol_rebind_policy(old
, &mems
);
1588 atomic_set(&new->refcnt
, 1);
1592 static int mpol_match_intent(const struct mempolicy
*a
,
1593 const struct mempolicy
*b
)
1595 if (a
->flags
!= b
->flags
)
1597 if (!mpol_store_user_nodemask(a
))
1599 return nodes_equal(a
->w
.user_nodemask
, b
->w
.user_nodemask
);
1602 /* Slow path of a mempolicy comparison */
1603 int __mpol_equal(struct mempolicy
*a
, struct mempolicy
*b
)
1607 if (a
->policy
!= b
->policy
)
1609 if (a
->policy
!= MPOL_DEFAULT
&& !mpol_match_intent(a
, b
))
1611 switch (a
->policy
) {
1616 case MPOL_INTERLEAVE
:
1617 return nodes_equal(a
->v
.nodes
, b
->v
.nodes
);
1618 case MPOL_PREFERRED
:
1619 return a
->v
.preferred_node
== b
->v
.preferred_node
;
1626 /* Slow path of a mpol destructor. */
1627 void __mpol_free(struct mempolicy
*p
)
1629 if (!atomic_dec_and_test(&p
->refcnt
))
1631 p
->policy
= MPOL_DEFAULT
;
1632 kmem_cache_free(policy_cache
, p
);
1636 * Shared memory backing store policy support.
1638 * Remember policies even when nobody has shared memory mapped.
1639 * The policies are kept in Red-Black tree linked from the inode.
1640 * They are protected by the sp->lock spinlock, which should be held
1641 * for any accesses to the tree.
1644 /* lookup first element intersecting start-end */
1645 /* Caller holds sp->lock */
1646 static struct sp_node
*
1647 sp_lookup(struct shared_policy
*sp
, unsigned long start
, unsigned long end
)
1649 struct rb_node
*n
= sp
->root
.rb_node
;
1652 struct sp_node
*p
= rb_entry(n
, struct sp_node
, nd
);
1654 if (start
>= p
->end
)
1656 else if (end
<= p
->start
)
1664 struct sp_node
*w
= NULL
;
1665 struct rb_node
*prev
= rb_prev(n
);
1668 w
= rb_entry(prev
, struct sp_node
, nd
);
1669 if (w
->end
<= start
)
1673 return rb_entry(n
, struct sp_node
, nd
);
1676 /* Insert a new shared policy into the list. */
1677 /* Caller holds sp->lock */
1678 static void sp_insert(struct shared_policy
*sp
, struct sp_node
*new)
1680 struct rb_node
**p
= &sp
->root
.rb_node
;
1681 struct rb_node
*parent
= NULL
;
1686 nd
= rb_entry(parent
, struct sp_node
, nd
);
1687 if (new->start
< nd
->start
)
1689 else if (new->end
> nd
->end
)
1690 p
= &(*p
)->rb_right
;
1694 rb_link_node(&new->nd
, parent
, p
);
1695 rb_insert_color(&new->nd
, &sp
->root
);
1696 pr_debug("inserting %lx-%lx: %d\n", new->start
, new->end
,
1697 new->policy
? new->policy
->policy
: 0);
1700 /* Find shared policy intersecting idx */
1702 mpol_shared_policy_lookup(struct shared_policy
*sp
, unsigned long idx
)
1704 struct mempolicy
*pol
= NULL
;
1707 if (!sp
->root
.rb_node
)
1709 spin_lock(&sp
->lock
);
1710 sn
= sp_lookup(sp
, idx
, idx
+1);
1712 mpol_get(sn
->policy
);
1715 spin_unlock(&sp
->lock
);
1719 static void sp_delete(struct shared_policy
*sp
, struct sp_node
*n
)
1721 pr_debug("deleting %lx-l%lx\n", n
->start
, n
->end
);
1722 rb_erase(&n
->nd
, &sp
->root
);
1723 mpol_free(n
->policy
);
1724 kmem_cache_free(sn_cache
, n
);
1727 static struct sp_node
*sp_alloc(unsigned long start
, unsigned long end
,
1728 struct mempolicy
*pol
)
1730 struct sp_node
*n
= kmem_cache_alloc(sn_cache
, GFP_KERNEL
);
1741 /* Replace a policy range. */
1742 static int shared_policy_replace(struct shared_policy
*sp
, unsigned long start
,
1743 unsigned long end
, struct sp_node
*new)
1745 struct sp_node
*n
, *new2
= NULL
;
1748 spin_lock(&sp
->lock
);
1749 n
= sp_lookup(sp
, start
, end
);
1750 /* Take care of old policies in the same range. */
1751 while (n
&& n
->start
< end
) {
1752 struct rb_node
*next
= rb_next(&n
->nd
);
1753 if (n
->start
>= start
) {
1759 /* Old policy spanning whole new range. */
1762 spin_unlock(&sp
->lock
);
1763 new2
= sp_alloc(end
, n
->end
, n
->policy
);
1769 sp_insert(sp
, new2
);
1777 n
= rb_entry(next
, struct sp_node
, nd
);
1781 spin_unlock(&sp
->lock
);
1783 mpol_free(new2
->policy
);
1784 kmem_cache_free(sn_cache
, new2
);
1789 void mpol_shared_policy_init(struct shared_policy
*info
, unsigned short policy
,
1790 unsigned short flags
, nodemask_t
*policy_nodes
)
1792 info
->root
= RB_ROOT
;
1793 spin_lock_init(&info
->lock
);
1795 if (policy
!= MPOL_DEFAULT
) {
1796 struct mempolicy
*newpol
;
1798 /* Falls back to MPOL_DEFAULT on any error */
1799 newpol
= mpol_new(policy
, flags
, policy_nodes
);
1800 if (!IS_ERR(newpol
)) {
1801 /* Create pseudo-vma that contains just the policy */
1802 struct vm_area_struct pvma
;
1804 memset(&pvma
, 0, sizeof(struct vm_area_struct
));
1805 /* Policy covers entire file */
1806 pvma
.vm_end
= TASK_SIZE
;
1807 mpol_set_shared_policy(info
, &pvma
, newpol
);
1813 int mpol_set_shared_policy(struct shared_policy
*info
,
1814 struct vm_area_struct
*vma
, struct mempolicy
*npol
)
1817 struct sp_node
*new = NULL
;
1818 unsigned long sz
= vma_pages(vma
);
1820 pr_debug("set_shared_policy %lx sz %lu %d %d %lx\n",
1822 sz
, npol
? npol
->policy
: -1,
1823 npol
? npol
->flags
: -1,
1824 npol
? nodes_addr(npol
->v
.nodes
)[0] : -1);
1827 new = sp_alloc(vma
->vm_pgoff
, vma
->vm_pgoff
+ sz
, npol
);
1831 err
= shared_policy_replace(info
, vma
->vm_pgoff
, vma
->vm_pgoff
+sz
, new);
1833 kmem_cache_free(sn_cache
, new);
1837 /* Free a backing policy store on inode delete. */
1838 void mpol_free_shared_policy(struct shared_policy
*p
)
1841 struct rb_node
*next
;
1843 if (!p
->root
.rb_node
)
1845 spin_lock(&p
->lock
);
1846 next
= rb_first(&p
->root
);
1848 n
= rb_entry(next
, struct sp_node
, nd
);
1849 next
= rb_next(&n
->nd
);
1850 rb_erase(&n
->nd
, &p
->root
);
1851 mpol_free(n
->policy
);
1852 kmem_cache_free(sn_cache
, n
);
1854 spin_unlock(&p
->lock
);
1857 /* assumes fs == KERNEL_DS */
1858 void __init
numa_policy_init(void)
1860 nodemask_t interleave_nodes
;
1861 unsigned long largest
= 0;
1862 int nid
, prefer
= 0;
1864 policy_cache
= kmem_cache_create("numa_policy",
1865 sizeof(struct mempolicy
),
1866 0, SLAB_PANIC
, NULL
);
1868 sn_cache
= kmem_cache_create("shared_policy_node",
1869 sizeof(struct sp_node
),
1870 0, SLAB_PANIC
, NULL
);
1873 * Set interleaving policy for system init. Interleaving is only
1874 * enabled across suitably sized nodes (default is >= 16MB), or
1875 * fall back to the largest node if they're all smaller.
1877 nodes_clear(interleave_nodes
);
1878 for_each_node_state(nid
, N_HIGH_MEMORY
) {
1879 unsigned long total_pages
= node_present_pages(nid
);
1881 /* Preserve the largest node */
1882 if (largest
< total_pages
) {
1883 largest
= total_pages
;
1887 /* Interleave this node? */
1888 if ((total_pages
<< PAGE_SHIFT
) >= (16 << 20))
1889 node_set(nid
, interleave_nodes
);
1892 /* All too small, use the largest */
1893 if (unlikely(nodes_empty(interleave_nodes
)))
1894 node_set(prefer
, interleave_nodes
);
1896 if (do_set_mempolicy(MPOL_INTERLEAVE
, 0, &interleave_nodes
))
1897 printk("numa_policy_init: interleaving failed\n");
1900 /* Reset policy of current process to default */
1901 void numa_default_policy(void)
1903 do_set_mempolicy(MPOL_DEFAULT
, 0, NULL
);
1907 * Display pages allocated per node and memory policy via /proc.
1909 static const char * const policy_types
[] =
1910 { "default", "prefer", "bind", "interleave" };
1913 * Convert a mempolicy into a string.
1914 * Returns the number of characters in buffer (if positive)
1915 * or an error (negative)
1917 static inline int mpol_to_str(char *buffer
, int maxlen
, struct mempolicy
*pol
)
1922 unsigned short mode
= pol
? pol
->policy
: MPOL_DEFAULT
;
1923 unsigned short flags
= pol
? pol
->flags
: 0;
1930 case MPOL_PREFERRED
:
1932 node_set(pol
->v
.preferred_node
, nodes
);
1937 case MPOL_INTERLEAVE
:
1938 nodes
= pol
->v
.nodes
;
1946 l
= strlen(policy_types
[mode
]);
1947 if (buffer
+ maxlen
< p
+ l
+ 1)
1950 strcpy(p
, policy_types
[mode
]);
1956 if (buffer
+ maxlen
< p
+ 2)
1960 if (flags
& MPOL_F_STATIC_NODES
)
1961 p
+= sprintf(p
, "%sstatic", need_bar
++ ? "|" : "");
1962 if (flags
& MPOL_F_RELATIVE_NODES
)
1963 p
+= sprintf(p
, "%srelative", need_bar
++ ? "|" : "");
1966 if (!nodes_empty(nodes
)) {
1967 if (buffer
+ maxlen
< p
+ 2)
1970 p
+= nodelist_scnprintf(p
, buffer
+ maxlen
- p
, nodes
);
1976 unsigned long pages
;
1978 unsigned long active
;
1979 unsigned long writeback
;
1980 unsigned long mapcount_max
;
1981 unsigned long dirty
;
1982 unsigned long swapcache
;
1983 unsigned long node
[MAX_NUMNODES
];
1986 static void gather_stats(struct page
*page
, void *private, int pte_dirty
)
1988 struct numa_maps
*md
= private;
1989 int count
= page_mapcount(page
);
1992 if (pte_dirty
|| PageDirty(page
))
1995 if (PageSwapCache(page
))
1998 if (PageActive(page
))
2001 if (PageWriteback(page
))
2007 if (count
> md
->mapcount_max
)
2008 md
->mapcount_max
= count
;
2010 md
->node
[page_to_nid(page
)]++;
2013 #ifdef CONFIG_HUGETLB_PAGE
2014 static void check_huge_range(struct vm_area_struct
*vma
,
2015 unsigned long start
, unsigned long end
,
2016 struct numa_maps
*md
)
2021 for (addr
= start
; addr
< end
; addr
+= HPAGE_SIZE
) {
2022 pte_t
*ptep
= huge_pte_offset(vma
->vm_mm
, addr
& HPAGE_MASK
);
2032 page
= pte_page(pte
);
2036 gather_stats(page
, md
, pte_dirty(*ptep
));
2040 static inline void check_huge_range(struct vm_area_struct
*vma
,
2041 unsigned long start
, unsigned long end
,
2042 struct numa_maps
*md
)
2047 int show_numa_map(struct seq_file
*m
, void *v
)
2049 struct proc_maps_private
*priv
= m
->private;
2050 struct vm_area_struct
*vma
= v
;
2051 struct numa_maps
*md
;
2052 struct file
*file
= vma
->vm_file
;
2053 struct mm_struct
*mm
= vma
->vm_mm
;
2054 struct mempolicy
*pol
;
2061 md
= kzalloc(sizeof(struct numa_maps
), GFP_KERNEL
);
2065 pol
= get_vma_policy(priv
->task
, vma
, vma
->vm_start
);
2066 mpol_to_str(buffer
, sizeof(buffer
), pol
);
2068 * unref shared or other task's mempolicy
2070 if (pol
!= &default_policy
&& pol
!= current
->mempolicy
)
2073 seq_printf(m
, "%08lx %s", vma
->vm_start
, buffer
);
2076 seq_printf(m
, " file=");
2077 seq_path(m
, &file
->f_path
, "\n\t= ");
2078 } else if (vma
->vm_start
<= mm
->brk
&& vma
->vm_end
>= mm
->start_brk
) {
2079 seq_printf(m
, " heap");
2080 } else if (vma
->vm_start
<= mm
->start_stack
&&
2081 vma
->vm_end
>= mm
->start_stack
) {
2082 seq_printf(m
, " stack");
2085 if (is_vm_hugetlb_page(vma
)) {
2086 check_huge_range(vma
, vma
->vm_start
, vma
->vm_end
, md
);
2087 seq_printf(m
, " huge");
2089 check_pgd_range(vma
, vma
->vm_start
, vma
->vm_end
,
2090 &node_states
[N_HIGH_MEMORY
], MPOL_MF_STATS
, md
);
2097 seq_printf(m
," anon=%lu",md
->anon
);
2100 seq_printf(m
," dirty=%lu",md
->dirty
);
2102 if (md
->pages
!= md
->anon
&& md
->pages
!= md
->dirty
)
2103 seq_printf(m
, " mapped=%lu", md
->pages
);
2105 if (md
->mapcount_max
> 1)
2106 seq_printf(m
, " mapmax=%lu", md
->mapcount_max
);
2109 seq_printf(m
," swapcache=%lu", md
->swapcache
);
2111 if (md
->active
< md
->pages
&& !is_vm_hugetlb_page(vma
))
2112 seq_printf(m
," active=%lu", md
->active
);
2115 seq_printf(m
," writeback=%lu", md
->writeback
);
2117 for_each_node_state(n
, N_HIGH_MEMORY
)
2119 seq_printf(m
, " N%d=%lu", n
, md
->node
[n
]);
2124 if (m
->count
< m
->size
)
2125 m
->version
= (vma
!= priv
->tail_vma
) ? vma
->vm_start
: 0;