blob: d59b1e766aee4d1bd162207f4eff893689cd9f8a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/nodemask.h>
76#include <linux/cpuset.h>
77#include <linux/gfp.h>
78#include <linux/slab.h>
79#include <linux/string.h>
80#include <linux/module.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070081#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/interrupt.h>
83#include <linux/init.h>
84#include <linux/compat.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080085#include <linux/swap.h>
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080086#include <linux/seq_file.h>
87#include <linux/proc_fs.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080088#include <linux/migrate.h>
Christoph Lameter95a402c2006-06-23 02:03:53 -070089#include <linux/rmap.h>
David Quigley86c3a762006-06-23 02:04:02 -070090#include <linux/security.h>
Adrian Bunkdbcb0f12007-10-16 01:26:26 -070091#include <linux/syscalls.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <asm/tlbflush.h>
94#include <asm/uaccess.h>
95
Christoph Lameter38e35862006-01-08 01:01:01 -080096/* Internal flags */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080097#define MPOL_MF_DISCONTIG_OK (MPOL_MF_INTERNAL << 0) /* Skip checks for continuous vmas */
Christoph Lameter38e35862006-01-08 01:01:01 -080098#define MPOL_MF_INVERT (MPOL_MF_INTERNAL << 1) /* Invert check for nodemask */
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080099#define MPOL_MF_STATS (MPOL_MF_INTERNAL << 2) /* Gather statistics */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800100
Pekka Enbergfcc234f2006-03-22 00:08:13 -0800101static struct kmem_cache *policy_cache;
102static struct kmem_cache *sn_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* Highest zone. An specific allocation for a zone below that is not
105 policied. */
Christoph Lameter62672762007-02-10 01:43:07 -0800106enum zone_type policy_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Andi Kleend42c6992005-07-06 19:56:03 +0200108struct mempolicy default_policy = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .refcnt = ATOMIC_INIT(1), /* never free it */
110 .policy = MPOL_DEFAULT,
111};
112
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700113static void mpol_rebind_policy(struct mempolicy *pol,
114 const nodemask_t *newmask);
115
Mel Gorman19770b32008-04-28 02:12:18 -0700116/* Check that the nodemask contains at least one populated zone */
117static int is_valid_nodemask(nodemask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Mel Gorman19770b32008-04-28 02:12:18 -0700119 int nd, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Mel Gorman19770b32008-04-28 02:12:18 -0700121 /* Check that there is something useful in this mask */
122 k = policy_zone;
123
124 for_each_node_mask(nd, *nodemask) {
125 struct zone *z;
126
127 for (k = 0; k <= policy_zone; k++) {
128 z = &NODE_DATA(nd)->node_zones[k];
129 if (z->present_pages > 0)
130 return 1;
Andi Kleendd942ae2006-02-17 01:39:16 +0100131 }
132 }
Mel Gorman19770b32008-04-28 02:12:18 -0700133
134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
David Rientjesf5b087b2008-04-28 02:12:27 -0700137static inline int mpol_store_user_nodemask(const struct mempolicy *pol)
138{
139 return pol->flags & MPOL_F_STATIC_NODES;
140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* Create a new policy */
David Rientjes028fec42008-04-28 02:12:25 -0700143static struct mempolicy *mpol_new(unsigned short mode, unsigned short flags,
144 nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct mempolicy *policy;
David Rientjesf5b087b2008-04-28 02:12:27 -0700147 nodemask_t cpuset_context_nmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
David Rientjes028fec42008-04-28 02:12:25 -0700149 pr_debug("setting mode %d flags %d nodes[0] %lx\n",
150 mode, flags, nodes ? nodes_addr(*nodes)[0] : -1);
Paul Mundt140d5a42007-07-15 23:38:16 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (mode == MPOL_DEFAULT)
David Rientjesf5b087b2008-04-28 02:12:27 -0700153 return (nodes && nodes_weight(*nodes)) ? ERR_PTR(-EINVAL) :
154 NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
156 if (!policy)
157 return ERR_PTR(-ENOMEM);
158 atomic_set(&policy->refcnt, 1);
David Rientjesf5b087b2008-04-28 02:12:27 -0700159 cpuset_update_task_memory_state();
160 nodes_and(cpuset_context_nmask, *nodes, cpuset_current_mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 switch (mode) {
162 case MPOL_INTERLEAVE:
David Rientjesf5b087b2008-04-28 02:12:27 -0700163 if (nodes_empty(*nodes) || nodes_empty(cpuset_context_nmask))
164 goto free;
165 policy->v.nodes = cpuset_context_nmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 case MPOL_PREFERRED:
David Rientjesf5b087b2008-04-28 02:12:27 -0700168 policy->v.preferred_node = first_node(cpuset_context_nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (policy->v.preferred_node >= MAX_NUMNODES)
David Rientjesf5b087b2008-04-28 02:12:27 -0700170 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 case MPOL_BIND:
David Rientjesf5b087b2008-04-28 02:12:27 -0700173 if (!is_valid_nodemask(&cpuset_context_nmask))
174 goto free;
175 policy->v.nodes = cpuset_context_nmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
David Rientjesa3b51e02008-04-28 02:12:23 -0700177 default:
178 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 policy->policy = mode;
David Rientjes028fec42008-04-28 02:12:25 -0700181 policy->flags = flags;
David Rientjesf5b087b2008-04-28 02:12:27 -0700182 if (mpol_store_user_nodemask(policy))
183 policy->w.user_nodemask = *nodes;
184 else
185 policy->w.cpuset_mems_allowed = cpuset_mems_allowed(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return policy;
David Rientjesf5b087b2008-04-28 02:12:27 -0700187
188free:
189 kmem_cache_free(policy_cache, policy);
190 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Christoph Lameter397874d2006-03-06 15:42:53 -0800193static void gather_stats(struct page *, void *, int pte_dirty);
Christoph Lameterfc301282006-01-18 17:42:29 -0800194static void migrate_page_add(struct page *page, struct list_head *pagelist,
195 unsigned long flags);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800196
Christoph Lameter38e35862006-01-08 01:01:01 -0800197/* Scan through pages checking if pages follow certain conditions. */
Nick Pigginb5810032005-10-29 18:16:12 -0700198static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800199 unsigned long addr, unsigned long end,
200 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800201 void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Hugh Dickins91612e02005-06-21 17:15:07 -0700203 pte_t *orig_pte;
204 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700205 spinlock_t *ptl;
Hugh Dickins941150a2005-06-21 17:15:06 -0700206
Hugh Dickins705e87c2005-10-29 18:16:27 -0700207 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700208 do {
Linus Torvalds6aab3412005-11-28 14:34:23 -0800209 struct page *page;
Andy Whitcroft25ba77c2006-12-06 20:33:03 -0800210 int nid;
Hugh Dickins91612e02005-06-21 17:15:07 -0700211
212 if (!pte_present(*pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800214 page = vm_normal_page(vma, addr, *pte);
215 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 continue;
Nick Piggin053837f2006-01-18 17:42:27 -0800217 /*
218 * The check for PageReserved here is important to avoid
219 * handling zero pages and other pages that may have been
220 * marked special by the system.
221 *
222 * If the PageReserved would not be checked here then f.e.
223 * the location of the zero page could have an influence
224 * on MPOL_MF_STRICT, zero pages would be counted for
225 * the per node stats, and there would be useless attempts
226 * to put zero pages on the migration list.
227 */
Christoph Lameterf4598c82006-01-12 01:05:20 -0800228 if (PageReserved(page))
229 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800230 nid = page_to_nid(page);
Christoph Lameter38e35862006-01-08 01:01:01 -0800231 if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT))
232 continue;
233
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800234 if (flags & MPOL_MF_STATS)
Christoph Lameter397874d2006-03-06 15:42:53 -0800235 gather_stats(page, private, pte_dirty(*pte));
Nick Piggin053837f2006-01-18 17:42:27 -0800236 else if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
Christoph Lameterfc301282006-01-18 17:42:29 -0800237 migrate_page_add(page, private, flags);
Christoph Lameter38e35862006-01-08 01:01:01 -0800238 else
239 break;
Hugh Dickins91612e02005-06-21 17:15:07 -0700240 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700241 pte_unmap_unlock(orig_pte, ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700242 return addr != end;
243}
244
Nick Pigginb5810032005-10-29 18:16:12 -0700245static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800246 unsigned long addr, unsigned long end,
247 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800248 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700249{
250 pmd_t *pmd;
251 unsigned long next;
252
253 pmd = pmd_offset(pud, addr);
254 do {
255 next = pmd_addr_end(addr, end);
256 if (pmd_none_or_clear_bad(pmd))
257 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800258 if (check_pte_range(vma, pmd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800259 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700260 return -EIO;
261 } while (pmd++, addr = next, addr != end);
262 return 0;
263}
264
Nick Pigginb5810032005-10-29 18:16:12 -0700265static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800266 unsigned long addr, unsigned long end,
267 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800268 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700269{
270 pud_t *pud;
271 unsigned long next;
272
273 pud = pud_offset(pgd, addr);
274 do {
275 next = pud_addr_end(addr, end);
276 if (pud_none_or_clear_bad(pud))
277 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800278 if (check_pmd_range(vma, pud, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800279 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700280 return -EIO;
281 } while (pud++, addr = next, addr != end);
282 return 0;
283}
284
Nick Pigginb5810032005-10-29 18:16:12 -0700285static inline int check_pgd_range(struct vm_area_struct *vma,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800286 unsigned long addr, unsigned long end,
287 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800288 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700289{
290 pgd_t *pgd;
291 unsigned long next;
292
Nick Pigginb5810032005-10-29 18:16:12 -0700293 pgd = pgd_offset(vma->vm_mm, addr);
Hugh Dickins91612e02005-06-21 17:15:07 -0700294 do {
295 next = pgd_addr_end(addr, end);
296 if (pgd_none_or_clear_bad(pgd))
297 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800298 if (check_pud_range(vma, pgd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800299 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700300 return -EIO;
301 } while (pgd++, addr = next, addr != end);
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800305/*
306 * Check if all pages in a range are on a set of nodes.
307 * If pagelist != NULL then isolate pages from the LRU and
308 * put them on the pagelist.
309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static struct vm_area_struct *
311check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
Christoph Lameter38e35862006-01-08 01:01:01 -0800312 const nodemask_t *nodes, unsigned long flags, void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 int err;
315 struct vm_area_struct *first, *vma, *prev;
316
Christoph Lameter90036ee2006-03-16 23:03:59 -0800317 if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) {
Christoph Lameter90036ee2006-03-16 23:03:59 -0800318
Christoph Lameterb20a3502006-03-22 00:09:12 -0800319 err = migrate_prep();
320 if (err)
321 return ERR_PTR(err);
Christoph Lameter90036ee2006-03-16 23:03:59 -0800322 }
Nick Piggin053837f2006-01-18 17:42:27 -0800323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 first = find_vma(mm, start);
325 if (!first)
326 return ERR_PTR(-EFAULT);
327 prev = NULL;
328 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800329 if (!(flags & MPOL_MF_DISCONTIG_OK)) {
330 if (!vma->vm_next && vma->vm_end < end)
331 return ERR_PTR(-EFAULT);
332 if (prev && prev->vm_end < vma->vm_start)
333 return ERR_PTR(-EFAULT);
334 }
335 if (!is_vm_hugetlb_page(vma) &&
336 ((flags & MPOL_MF_STRICT) ||
337 ((flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) &&
338 vma_migratable(vma)))) {
Andi Kleen5b952b32005-09-13 01:25:08 -0700339 unsigned long endvma = vma->vm_end;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800340
Andi Kleen5b952b32005-09-13 01:25:08 -0700341 if (endvma > end)
342 endvma = end;
343 if (vma->vm_start > start)
344 start = vma->vm_start;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800345 err = check_pgd_range(vma, start, endvma, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800346 flags, private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (err) {
348 first = ERR_PTR(err);
349 break;
350 }
351 }
352 prev = vma;
353 }
354 return first;
355}
356
357/* Apply policy to a single VMA */
358static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
359{
360 int err = 0;
361 struct mempolicy *old = vma->vm_policy;
362
Paul Mundt140d5a42007-07-15 23:38:16 -0700363 pr_debug("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 vma->vm_start, vma->vm_end, vma->vm_pgoff,
365 vma->vm_ops, vma->vm_file,
366 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
367
368 if (vma->vm_ops && vma->vm_ops->set_policy)
369 err = vma->vm_ops->set_policy(vma, new);
370 if (!err) {
371 mpol_get(new);
372 vma->vm_policy = new;
373 mpol_free(old);
374 }
375 return err;
376}
377
378/* Step 2: apply policy to a range and do splits. */
379static int mbind_range(struct vm_area_struct *vma, unsigned long start,
380 unsigned long end, struct mempolicy *new)
381{
382 struct vm_area_struct *next;
383 int err;
384
385 err = 0;
386 for (; vma && vma->vm_start < end; vma = next) {
387 next = vma->vm_next;
388 if (vma->vm_start < start)
389 err = split_vma(vma->vm_mm, vma, start, 1);
390 if (!err && vma->vm_end > end)
391 err = split_vma(vma->vm_mm, vma, end, 0);
392 if (!err)
393 err = policy_vma(vma, new);
394 if (err)
395 break;
396 }
397 return err;
398}
399
Paul Jacksonc61afb12006-03-24 03:16:08 -0800400/*
401 * Update task->flags PF_MEMPOLICY bit: set iff non-default
402 * mempolicy. Allows more rapid checking of this (combined perhaps
403 * with other PF_* flag bits) on memory allocation hot code paths.
404 *
405 * If called from outside this file, the task 'p' should -only- be
406 * a newly forked child not yet visible on the task list, because
407 * manipulating the task flags of a visible task is not safe.
408 *
409 * The above limitation is why this routine has the funny name
410 * mpol_fix_fork_child_flag().
411 *
412 * It is also safe to call this with a task pointer of current,
413 * which the static wrapper mpol_set_task_struct_flag() does,
414 * for use within this file.
415 */
416
417void mpol_fix_fork_child_flag(struct task_struct *p)
418{
419 if (p->mempolicy)
420 p->flags |= PF_MEMPOLICY;
421 else
422 p->flags &= ~PF_MEMPOLICY;
423}
424
425static void mpol_set_task_struct_flag(void)
426{
427 mpol_fix_fork_child_flag(current);
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* Set the process memory policy */
David Rientjes028fec42008-04-28 02:12:25 -0700431static long do_set_mempolicy(unsigned short mode, unsigned short flags,
432 nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct mempolicy *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
David Rientjes028fec42008-04-28 02:12:25 -0700436 new = mpol_new(mode, flags, nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (IS_ERR(new))
438 return PTR_ERR(new);
439 mpol_free(current->mempolicy);
440 current->mempolicy = new;
Paul Jacksonc61afb12006-03-24 03:16:08 -0800441 mpol_set_task_struct_flag();
David Rientjesf5b087b2008-04-28 02:12:27 -0700442 if (new && new->policy == MPOL_INTERLEAVE &&
443 nodes_weight(new->v.nodes))
Andi Kleendfcd3c02005-10-29 18:15:48 -0700444 current->il_next = first_node(new->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return 0;
446}
447
448/* Fill a zone bitmap for a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700449static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Andi Kleendfcd3c02005-10-29 18:15:48 -0700451 nodes_clear(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 switch (p->policy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case MPOL_DEFAULT:
454 break;
Mel Gorman19770b32008-04-28 02:12:18 -0700455 case MPOL_BIND:
456 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700458 *nodes = p->v.nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 case MPOL_PREFERRED:
Christoph Lameter56bbd652007-10-16 01:25:35 -0700461 /* or use current node instead of memory_map? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (p->v.preferred_node < 0)
Christoph Lameter56bbd652007-10-16 01:25:35 -0700463 *nodes = node_states[N_HIGH_MEMORY];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 else
Andi Kleendfcd3c02005-10-29 18:15:48 -0700465 node_set(p->v.preferred_node, *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 default:
468 BUG();
469 }
470}
471
472static int lookup_node(struct mm_struct *mm, unsigned long addr)
473{
474 struct page *p;
475 int err;
476
477 err = get_user_pages(current, mm, addr & PAGE_MASK, 1, 0, 0, &p, NULL);
478 if (err >= 0) {
479 err = page_to_nid(p);
480 put_page(p);
481 }
482 return err;
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/* Retrieve NUMA policy */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700486static long do_get_mempolicy(int *policy, nodemask_t *nmask,
487 unsigned long addr, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Christoph Lameter8bccd852005-10-29 18:16:59 -0700489 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct mm_struct *mm = current->mm;
491 struct vm_area_struct *vma = NULL;
492 struct mempolicy *pol = current->mempolicy;
493
Paul Jacksoncf2a4732006-01-08 01:01:54 -0800494 cpuset_update_task_memory_state();
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700495 if (flags &
496 ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR|MPOL_F_MEMS_ALLOWED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return -EINVAL;
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700498
499 if (flags & MPOL_F_MEMS_ALLOWED) {
500 if (flags & (MPOL_F_NODE|MPOL_F_ADDR))
501 return -EINVAL;
502 *policy = 0; /* just so it's initialized */
503 *nmask = cpuset_current_mems_allowed;
504 return 0;
505 }
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (flags & MPOL_F_ADDR) {
508 down_read(&mm->mmap_sem);
509 vma = find_vma_intersection(mm, addr, addr+1);
510 if (!vma) {
511 up_read(&mm->mmap_sem);
512 return -EFAULT;
513 }
514 if (vma->vm_ops && vma->vm_ops->get_policy)
515 pol = vma->vm_ops->get_policy(vma, addr);
516 else
517 pol = vma->vm_policy;
518 } else if (addr)
519 return -EINVAL;
520
521 if (!pol)
522 pol = &default_policy;
523
524 if (flags & MPOL_F_NODE) {
525 if (flags & MPOL_F_ADDR) {
526 err = lookup_node(mm, addr);
527 if (err < 0)
528 goto out;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700529 *policy = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 } else if (pol == current->mempolicy &&
531 pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter8bccd852005-10-29 18:16:59 -0700532 *policy = current->il_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else {
534 err = -EINVAL;
535 goto out;
536 }
537 } else
David Rientjes028fec42008-04-28 02:12:25 -0700538 *policy = pol->policy | pol->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (vma) {
541 up_read(&current->mm->mmap_sem);
542 vma = NULL;
543 }
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 err = 0;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700546 if (nmask)
547 get_zonemask(pol, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 out:
550 if (vma)
551 up_read(&current->mm->mmap_sem);
552 return err;
553}
554
Christoph Lameterb20a3502006-03-22 00:09:12 -0800555#ifdef CONFIG_MIGRATION
Christoph Lameter8bccd852005-10-29 18:16:59 -0700556/*
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800557 * page migration
558 */
Christoph Lameterfc301282006-01-18 17:42:29 -0800559static void migrate_page_add(struct page *page, struct list_head *pagelist,
560 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800561{
562 /*
Christoph Lameterfc301282006-01-18 17:42:29 -0800563 * Avoid migrating a page that is shared with others.
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800564 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800565 if ((flags & MPOL_MF_MOVE_ALL) || page_mapcount(page) == 1)
566 isolate_lru_page(page, pagelist);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800567}
568
Christoph Lameter742755a2006-06-23 02:03:55 -0700569static struct page *new_node_page(struct page *page, unsigned long node, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700570{
Mel Gorman769848c2007-07-17 04:03:05 -0700571 return alloc_pages_node(node, GFP_HIGHUSER_MOVABLE, 0);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700572}
573
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800574/*
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800575 * Migrate pages from one node to a target node.
576 * Returns error or the number of pages not migrated.
577 */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700578static int migrate_to_node(struct mm_struct *mm, int source, int dest,
579 int flags)
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800580{
581 nodemask_t nmask;
582 LIST_HEAD(pagelist);
583 int err = 0;
584
585 nodes_clear(nmask);
586 node_set(source, nmask);
587
588 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nmask,
589 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
590
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700591 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700592 err = migrate_pages(&pagelist, new_node_page, dest);
593
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800594 return err;
595}
596
597/*
598 * Move pages between the two nodesets so as to preserve the physical
599 * layout as much as possible.
Christoph Lameter39743882006-01-08 01:00:51 -0800600 *
601 * Returns the number of page that could not be moved.
602 */
603int do_migrate_pages(struct mm_struct *mm,
604 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
605{
606 LIST_HEAD(pagelist);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800607 int busy = 0;
608 int err = 0;
609 nodemask_t tmp;
Christoph Lameter39743882006-01-08 01:00:51 -0800610
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800611 down_read(&mm->mmap_sem);
Christoph Lameter39743882006-01-08 01:00:51 -0800612
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700613 err = migrate_vmas(mm, from_nodes, to_nodes, flags);
614 if (err)
615 goto out;
616
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800617/*
618 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
619 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
620 * bit in 'tmp', and return that <source, dest> pair for migration.
621 * The pair of nodemasks 'to' and 'from' define the map.
622 *
623 * If no pair of bits is found that way, fallback to picking some
624 * pair of 'source' and 'dest' bits that are not the same. If the
625 * 'source' and 'dest' bits are the same, this represents a node
626 * that will be migrating to itself, so no pages need move.
627 *
628 * If no bits are left in 'tmp', or if all remaining bits left
629 * in 'tmp' correspond to the same bit in 'to', return false
630 * (nothing left to migrate).
631 *
632 * This lets us pick a pair of nodes to migrate between, such that
633 * if possible the dest node is not already occupied by some other
634 * source node, minimizing the risk of overloading the memory on a
635 * node that would happen if we migrated incoming memory to a node
636 * before migrating outgoing memory source that same node.
637 *
638 * A single scan of tmp is sufficient. As we go, we remember the
639 * most recent <s, d> pair that moved (s != d). If we find a pair
640 * that not only moved, but what's better, moved to an empty slot
641 * (d is not set in tmp), then we break out then, with that pair.
642 * Otherwise when we finish scannng from_tmp, we at least have the
643 * most recent <s, d> pair that moved. If we get all the way through
644 * the scan of tmp without finding any node that moved, much less
645 * moved to an empty node, then there is nothing left worth migrating.
646 */
Christoph Lameterd4984712006-01-08 01:00:55 -0800647
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800648 tmp = *from_nodes;
649 while (!nodes_empty(tmp)) {
650 int s,d;
651 int source = -1;
652 int dest = 0;
653
654 for_each_node_mask(s, tmp) {
655 d = node_remap(s, *from_nodes, *to_nodes);
656 if (s == d)
657 continue;
658
659 source = s; /* Node moved. Memorize */
660 dest = d;
661
662 /* dest not in remaining from nodes? */
663 if (!node_isset(dest, tmp))
664 break;
665 }
666 if (source == -1)
667 break;
668
669 node_clear(source, tmp);
670 err = migrate_to_node(mm, source, dest, flags);
671 if (err > 0)
672 busy += err;
673 if (err < 0)
674 break;
Christoph Lameter39743882006-01-08 01:00:51 -0800675 }
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700676out:
Christoph Lameter39743882006-01-08 01:00:51 -0800677 up_read(&mm->mmap_sem);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800678 if (err < 0)
679 return err;
680 return busy;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800681
Christoph Lameter39743882006-01-08 01:00:51 -0800682}
683
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800684/*
685 * Allocate a new page for page migration based on vma policy.
686 * Start assuming that page is mapped by vma pointed to by @private.
687 * Search forward from there, if not. N.B., this assumes that the
688 * list of pages handed to migrate_pages()--which is how we get here--
689 * is in virtual address order.
690 */
Christoph Lameter742755a2006-06-23 02:03:55 -0700691static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700692{
693 struct vm_area_struct *vma = (struct vm_area_struct *)private;
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800694 unsigned long uninitialized_var(address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700695
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800696 while (vma) {
697 address = page_address_in_vma(page, vma);
698 if (address != -EFAULT)
699 break;
700 vma = vma->vm_next;
701 }
702
703 /*
704 * if !vma, alloc_page_vma() will use task or system default policy
705 */
706 return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700707}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800708#else
709
710static void migrate_page_add(struct page *page, struct list_head *pagelist,
711 unsigned long flags)
712{
713}
714
715int do_migrate_pages(struct mm_struct *mm,
716 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
717{
718 return -ENOSYS;
719}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700720
Keith Owens69939742006-10-11 01:21:28 -0700721static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700722{
723 return NULL;
724}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800725#endif
726
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700727static long do_mbind(unsigned long start, unsigned long len,
David Rientjes028fec42008-04-28 02:12:25 -0700728 unsigned short mode, unsigned short mode_flags,
729 nodemask_t *nmask, unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800730{
731 struct vm_area_struct *vma;
732 struct mm_struct *mm = current->mm;
733 struct mempolicy *new;
734 unsigned long end;
735 int err;
736 LIST_HEAD(pagelist);
737
David Rientjesa3b51e02008-04-28 02:12:23 -0700738 if (flags & ~(unsigned long)(MPOL_MF_STRICT |
739 MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800740 return -EINVAL;
Christoph Lameter74c00242006-03-14 19:50:21 -0800741 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800742 return -EPERM;
743
744 if (start & ~PAGE_MASK)
745 return -EINVAL;
746
747 if (mode == MPOL_DEFAULT)
748 flags &= ~MPOL_MF_STRICT;
749
750 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
751 end = start + len;
752
753 if (end < start)
754 return -EINVAL;
755 if (end == start)
756 return 0;
757
David Rientjes028fec42008-04-28 02:12:25 -0700758 new = mpol_new(mode, mode_flags, nmask);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800759 if (IS_ERR(new))
760 return PTR_ERR(new);
761
762 /*
763 * If we are using the default policy then operation
764 * on discontinuous address spaces is okay after all
765 */
766 if (!new)
767 flags |= MPOL_MF_DISCONTIG_OK;
768
David Rientjes028fec42008-04-28 02:12:25 -0700769 pr_debug("mbind %lx-%lx mode:%d flags:%d nodes:%lx\n",
770 start, start + len, mode, mode_flags,
771 nmask ? nodes_addr(*nmask)[0] : -1);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800772
773 down_write(&mm->mmap_sem);
774 vma = check_range(mm, start, end, nmask,
775 flags | MPOL_MF_INVERT, &pagelist);
776
777 err = PTR_ERR(vma);
778 if (!IS_ERR(vma)) {
779 int nr_failed = 0;
780
781 err = mbind_range(vma, start, end, new);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800782
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800783 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700784 nr_failed = migrate_pages(&pagelist, new_vma_page,
785 (unsigned long)vma);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800786
787 if (!err && nr_failed && (flags & MPOL_MF_STRICT))
788 err = -EIO;
789 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800790
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800791 up_write(&mm->mmap_sem);
792 mpol_free(new);
793 return err;
794}
795
Christoph Lameter39743882006-01-08 01:00:51 -0800796/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700797 * User space interface with variable sized bitmaps for nodelists.
798 */
799
800/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800801static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700802 unsigned long maxnode)
803{
804 unsigned long k;
805 unsigned long nlongs;
806 unsigned long endmask;
807
808 --maxnode;
809 nodes_clear(*nodes);
810 if (maxnode == 0 || !nmask)
811 return 0;
Andi Kleena9c930b2006-02-20 18:27:59 -0800812 if (maxnode > PAGE_SIZE*BITS_PER_BYTE)
Chris Wright636f13c2006-02-17 13:59:36 -0800813 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700814
815 nlongs = BITS_TO_LONGS(maxnode);
816 if ((maxnode % BITS_PER_LONG) == 0)
817 endmask = ~0UL;
818 else
819 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
820
821 /* When the user specified more nodes than supported just check
822 if the non supported part is all zero. */
823 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
824 if (nlongs > PAGE_SIZE/sizeof(long))
825 return -EINVAL;
826 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
827 unsigned long t;
828 if (get_user(t, nmask + k))
829 return -EFAULT;
830 if (k == nlongs - 1) {
831 if (t & endmask)
832 return -EINVAL;
833 } else if (t)
834 return -EINVAL;
835 }
836 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
837 endmask = ~0UL;
838 }
839
840 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
841 return -EFAULT;
842 nodes_addr(*nodes)[nlongs-1] &= endmask;
843 return 0;
844}
845
846/* Copy a kernel node mask to user space */
847static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
848 nodemask_t *nodes)
849{
850 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
851 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
852
853 if (copy > nbytes) {
854 if (copy > PAGE_SIZE)
855 return -EINVAL;
856 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
857 return -EFAULT;
858 copy = nbytes;
859 }
860 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
861}
862
863asmlinkage long sys_mbind(unsigned long start, unsigned long len,
864 unsigned long mode,
865 unsigned long __user *nmask, unsigned long maxnode,
866 unsigned flags)
867{
868 nodemask_t nodes;
869 int err;
David Rientjes028fec42008-04-28 02:12:25 -0700870 unsigned short mode_flags;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700871
David Rientjes028fec42008-04-28 02:12:25 -0700872 mode_flags = mode & MPOL_MODE_FLAGS;
873 mode &= ~MPOL_MODE_FLAGS;
David Rientjesa3b51e02008-04-28 02:12:23 -0700874 if (mode >= MPOL_MAX)
875 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700876 err = get_nodes(&nodes, nmask, maxnode);
877 if (err)
878 return err;
David Rientjes028fec42008-04-28 02:12:25 -0700879 return do_mbind(start, len, mode, mode_flags, &nodes, flags);
Christoph Lameter8bccd852005-10-29 18:16:59 -0700880}
881
882/* Set the process memory policy */
883asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
884 unsigned long maxnode)
885{
886 int err;
887 nodemask_t nodes;
David Rientjes028fec42008-04-28 02:12:25 -0700888 unsigned short flags;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700889
David Rientjes028fec42008-04-28 02:12:25 -0700890 flags = mode & MPOL_MODE_FLAGS;
891 mode &= ~MPOL_MODE_FLAGS;
892 if ((unsigned int)mode >= MPOL_MAX)
Christoph Lameter8bccd852005-10-29 18:16:59 -0700893 return -EINVAL;
894 err = get_nodes(&nodes, nmask, maxnode);
895 if (err)
896 return err;
David Rientjes028fec42008-04-28 02:12:25 -0700897 return do_set_mempolicy(mode, flags, &nodes);
Christoph Lameter8bccd852005-10-29 18:16:59 -0700898}
899
Christoph Lameter39743882006-01-08 01:00:51 -0800900asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
901 const unsigned long __user *old_nodes,
902 const unsigned long __user *new_nodes)
903{
904 struct mm_struct *mm;
905 struct task_struct *task;
906 nodemask_t old;
907 nodemask_t new;
908 nodemask_t task_nodes;
909 int err;
910
911 err = get_nodes(&old, old_nodes, maxnode);
912 if (err)
913 return err;
914
915 err = get_nodes(&new, new_nodes, maxnode);
916 if (err)
917 return err;
918
919 /* Find the mm_struct */
920 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700921 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter39743882006-01-08 01:00:51 -0800922 if (!task) {
923 read_unlock(&tasklist_lock);
924 return -ESRCH;
925 }
926 mm = get_task_mm(task);
927 read_unlock(&tasklist_lock);
928
929 if (!mm)
930 return -EINVAL;
931
932 /*
933 * Check if this process has the right to modify the specified
934 * process. The right exists if the process has administrative
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800935 * capabilities, superuser privileges or the same
Christoph Lameter39743882006-01-08 01:00:51 -0800936 * userid as the target process.
937 */
938 if ((current->euid != task->suid) && (current->euid != task->uid) &&
939 (current->uid != task->suid) && (current->uid != task->uid) &&
Christoph Lameter74c00242006-03-14 19:50:21 -0800940 !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800941 err = -EPERM;
942 goto out;
943 }
944
945 task_nodes = cpuset_mems_allowed(task);
946 /* Is the user allowed to access the target nodes? */
Christoph Lameter74c00242006-03-14 19:50:21 -0800947 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800948 err = -EPERM;
949 goto out;
950 }
951
Lee Schermerhorn37b07e42007-10-16 01:25:39 -0700952 if (!nodes_subset(new, node_states[N_HIGH_MEMORY])) {
Christoph Lameter3b42d282007-08-31 00:12:08 -0700953 err = -EINVAL;
954 goto out;
955 }
956
David Quigley86c3a762006-06-23 02:04:02 -0700957 err = security_task_movememory(task);
958 if (err)
959 goto out;
960
Christoph Lameter511030b2006-02-28 16:58:57 -0800961 err = do_migrate_pages(mm, &old, &new,
Christoph Lameter74c00242006-03-14 19:50:21 -0800962 capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
Christoph Lameter39743882006-01-08 01:00:51 -0800963out:
964 mmput(mm);
965 return err;
966}
967
968
Christoph Lameter8bccd852005-10-29 18:16:59 -0700969/* Retrieve NUMA policy */
970asmlinkage long sys_get_mempolicy(int __user *policy,
971 unsigned long __user *nmask,
972 unsigned long maxnode,
973 unsigned long addr, unsigned long flags)
974{
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700975 int err;
976 int uninitialized_var(pval);
Christoph Lameter8bccd852005-10-29 18:16:59 -0700977 nodemask_t nodes;
978
979 if (nmask != NULL && maxnode < MAX_NUMNODES)
980 return -EINVAL;
981
982 err = do_get_mempolicy(&pval, &nodes, addr, flags);
983
984 if (err)
985 return err;
986
987 if (policy && put_user(pval, policy))
988 return -EFAULT;
989
990 if (nmask)
991 err = copy_nodes_to_user(nmask, maxnode, &nodes);
992
993 return err;
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996#ifdef CONFIG_COMPAT
997
998asmlinkage long compat_sys_get_mempolicy(int __user *policy,
999 compat_ulong_t __user *nmask,
1000 compat_ulong_t maxnode,
1001 compat_ulong_t addr, compat_ulong_t flags)
1002{
1003 long err;
1004 unsigned long __user *nm = NULL;
1005 unsigned long nr_bits, alloc_size;
1006 DECLARE_BITMAP(bm, MAX_NUMNODES);
1007
1008 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1009 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1010
1011 if (nmask)
1012 nm = compat_alloc_user_space(alloc_size);
1013
1014 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
1015
1016 if (!err && nmask) {
1017 err = copy_from_user(bm, nm, alloc_size);
1018 /* ensure entire bitmap is zeroed */
1019 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
1020 err |= compat_put_bitmap(nmask, bm, nr_bits);
1021 }
1022
1023 return err;
1024}
1025
1026asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
1027 compat_ulong_t maxnode)
1028{
1029 long err = 0;
1030 unsigned long __user *nm = NULL;
1031 unsigned long nr_bits, alloc_size;
1032 DECLARE_BITMAP(bm, MAX_NUMNODES);
1033
1034 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1035 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1036
1037 if (nmask) {
1038 err = compat_get_bitmap(bm, nmask, nr_bits);
1039 nm = compat_alloc_user_space(alloc_size);
1040 err |= copy_to_user(nm, bm, alloc_size);
1041 }
1042
1043 if (err)
1044 return -EFAULT;
1045
1046 return sys_set_mempolicy(mode, nm, nr_bits+1);
1047}
1048
1049asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
1050 compat_ulong_t mode, compat_ulong_t __user *nmask,
1051 compat_ulong_t maxnode, compat_ulong_t flags)
1052{
1053 long err = 0;
1054 unsigned long __user *nm = NULL;
1055 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001056 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1059 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1060
1061 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001062 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -07001064 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
1067 if (err)
1068 return -EFAULT;
1069
1070 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
1071}
1072
1073#endif
1074
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001075/*
1076 * get_vma_policy(@task, @vma, @addr)
1077 * @task - task for fallback if vma policy == default
1078 * @vma - virtual memory area whose policy is sought
1079 * @addr - address in @vma for shared policy lookup
1080 *
1081 * Returns effective policy for a VMA at specified address.
1082 * Falls back to @task or system default policy, as necessary.
1083 * Returned policy has extra reference count if shared, vma,
1084 * or some other task's policy [show_numa_maps() can pass
1085 * @task != current]. It is the caller's responsibility to
1086 * free the reference in these cases.
1087 */
Christoph Lameter48fce342006-01-08 01:01:03 -08001088static struct mempolicy * get_vma_policy(struct task_struct *task,
1089 struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001091 struct mempolicy *pol = task->mempolicy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001092 int shared_pol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (vma) {
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001095 if (vma->vm_ops && vma->vm_ops->get_policy) {
Christoph Lameter8bccd852005-10-29 18:16:59 -07001096 pol = vma->vm_ops->get_policy(vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001097 shared_pol = 1; /* if pol non-NULL, add ref below */
1098 } else if (vma->vm_policy &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 vma->vm_policy->policy != MPOL_DEFAULT)
1100 pol = vma->vm_policy;
1101 }
1102 if (!pol)
1103 pol = &default_policy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001104 else if (!shared_pol && pol != current->mempolicy)
1105 mpol_get(pol); /* vma or other task's policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return pol;
1107}
1108
Mel Gorman19770b32008-04-28 02:12:18 -07001109/* Return a nodemask representing a mempolicy */
1110static nodemask_t *nodemask_policy(gfp_t gfp, struct mempolicy *policy)
1111{
1112 /* Lower zones don't get a nodemask applied for MPOL_BIND */
1113 if (unlikely(policy->policy == MPOL_BIND) &&
1114 gfp_zone(gfp) >= policy_zone &&
1115 cpuset_nodemask_valid_mems_allowed(&policy->v.nodes))
1116 return &policy->v.nodes;
1117
1118 return NULL;
1119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +01001122static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 int nd;
1125
1126 switch (policy->policy) {
1127 case MPOL_PREFERRED:
1128 nd = policy->v.preferred_node;
1129 if (nd < 0)
1130 nd = numa_node_id();
1131 break;
1132 case MPOL_BIND:
Mel Gorman19770b32008-04-28 02:12:18 -07001133 /*
1134 * Normally, MPOL_BIND allocations node-local are node-local
1135 * within the allowed nodemask. However, if __GFP_THISNODE is
1136 * set and the current node is part of the mask, we use the
1137 * the zonelist for the first node in the mask instead.
1138 */
1139 nd = numa_node_id();
1140 if (unlikely(gfp & __GFP_THISNODE) &&
1141 unlikely(!node_isset(nd, policy->v.nodes)))
1142 nd = first_node(policy->v.nodes);
1143 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 case MPOL_INTERLEAVE: /* should not happen */
1145 case MPOL_DEFAULT:
1146 nd = numa_node_id();
1147 break;
1148 default:
1149 nd = 0;
1150 BUG();
1151 }
Mel Gorman0e884602008-04-28 02:12:14 -07001152 return node_zonelist(nd, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
1155/* Do dynamic interleaving for a process */
1156static unsigned interleave_nodes(struct mempolicy *policy)
1157{
1158 unsigned nid, next;
1159 struct task_struct *me = current;
1160
1161 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001162 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -07001164 next = first_node(policy->v.nodes);
David Rientjesf5b087b2008-04-28 02:12:27 -07001165 if (next < MAX_NUMNODES)
1166 me->il_next = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return nid;
1168}
1169
Christoph Lameterdc85da12006-01-18 17:42:36 -08001170/*
1171 * Depending on the memory policy provide a node from which to allocate the
1172 * next slab entry.
1173 */
1174unsigned slab_node(struct mempolicy *policy)
1175{
David Rientjesa3b51e02008-04-28 02:12:23 -07001176 unsigned short pol = policy ? policy->policy : MPOL_DEFAULT;
Christoph Lameter765c4502006-09-27 01:50:08 -07001177
1178 switch (pol) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001179 case MPOL_INTERLEAVE:
1180 return interleave_nodes(policy);
1181
Mel Gormandd1a2392008-04-28 02:12:17 -07001182 case MPOL_BIND: {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001183 /*
1184 * Follow bind policy behavior and start allocation at the
1185 * first node.
1186 */
Mel Gorman19770b32008-04-28 02:12:18 -07001187 struct zonelist *zonelist;
1188 struct zone *zone;
1189 enum zone_type highest_zoneidx = gfp_zone(GFP_KERNEL);
1190 zonelist = &NODE_DATA(numa_node_id())->node_zonelists[0];
1191 (void)first_zones_zonelist(zonelist, highest_zoneidx,
1192 &policy->v.nodes,
1193 &zone);
1194 return zone->node;
Mel Gormandd1a2392008-04-28 02:12:17 -07001195 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08001196
1197 case MPOL_PREFERRED:
1198 if (policy->v.preferred_node >= 0)
1199 return policy->v.preferred_node;
1200 /* Fall through */
1201
1202 default:
1203 return numa_node_id();
1204 }
1205}
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207/* Do static interleaving for a VMA with known offset. */
1208static unsigned offset_il_node(struct mempolicy *pol,
1209 struct vm_area_struct *vma, unsigned long off)
1210{
Andi Kleendfcd3c02005-10-29 18:15:48 -07001211 unsigned nnodes = nodes_weight(pol->v.nodes);
David Rientjesf5b087b2008-04-28 02:12:27 -07001212 unsigned target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int c;
1214 int nid = -1;
1215
David Rientjesf5b087b2008-04-28 02:12:27 -07001216 if (!nnodes)
1217 return numa_node_id();
1218 target = (unsigned int)off % nnodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 c = 0;
1220 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001221 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 c++;
1223 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return nid;
1225}
1226
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001227/* Determine a node number for interleave */
1228static inline unsigned interleave_nid(struct mempolicy *pol,
1229 struct vm_area_struct *vma, unsigned long addr, int shift)
1230{
1231 if (vma) {
1232 unsigned long off;
1233
Nishanth Aravamudan3b98b082006-08-31 21:27:53 -07001234 /*
1235 * for small pages, there is no difference between
1236 * shift and PAGE_SHIFT, so the bit-shift is safe.
1237 * for huge pages, since vm_pgoff is in units of small
1238 * pages, we need to shift off the always 0 bits to get
1239 * a useful offset.
1240 */
1241 BUG_ON(shift < PAGE_SHIFT);
1242 off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001243 off += (addr - vma->vm_start) >> shift;
1244 return offset_il_node(pol, vma, off);
1245 } else
1246 return interleave_nodes(pol);
1247}
1248
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001249#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001250/*
1251 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1252 * @vma = virtual memory area whose policy is sought
1253 * @addr = address in @vma for shared policy lookup and interleave policy
1254 * @gfp_flags = for requested zone
Mel Gorman19770b32008-04-28 02:12:18 -07001255 * @mpol = pointer to mempolicy pointer for reference counted mempolicy
1256 * @nodemask = pointer to nodemask pointer for MPOL_BIND nodemask
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001257 *
1258 * Returns a zonelist suitable for a huge page allocation.
Mel Gorman19770b32008-04-28 02:12:18 -07001259 * If the effective policy is 'BIND, returns pointer to local node's zonelist,
1260 * and a pointer to the mempolicy's @nodemask for filtering the zonelist.
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001261 * If it is also a policy for which get_vma_policy() returns an extra
Mel Gorman19770b32008-04-28 02:12:18 -07001262 * reference, we must hold that reference until after the allocation.
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001263 * In that case, return policy via @mpol so hugetlb allocation can drop
Mel Gorman19770b32008-04-28 02:12:18 -07001264 * the reference. For non-'BIND referenced policies, we can/do drop the
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001265 * reference here, so the caller doesn't need to know about the special case
1266 * for default and current task policy.
1267 */
Mel Gorman396faf02007-07-17 04:03:13 -07001268struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr,
Mel Gorman19770b32008-04-28 02:12:18 -07001269 gfp_t gfp_flags, struct mempolicy **mpol,
1270 nodemask_t **nodemask)
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001271{
1272 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001273 struct zonelist *zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001274
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001275 *mpol = NULL; /* probably no unref needed */
Mel Gorman19770b32008-04-28 02:12:18 -07001276 *nodemask = NULL; /* assume !MPOL_BIND */
1277 if (pol->policy == MPOL_BIND) {
1278 *nodemask = &pol->v.nodes;
1279 } else if (pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001280 unsigned nid;
1281
1282 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001283 if (unlikely(pol != &default_policy &&
1284 pol != current->mempolicy))
1285 __mpol_free(pol); /* finished with pol */
Mel Gorman0e884602008-04-28 02:12:14 -07001286 return node_zonelist(nid, gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001287 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001288
1289 zl = zonelist_policy(GFP_HIGHUSER, pol);
1290 if (unlikely(pol != &default_policy && pol != current->mempolicy)) {
1291 if (pol->policy != MPOL_BIND)
1292 __mpol_free(pol); /* finished with pol */
1293 else
1294 *mpol = pol; /* unref needed after allocation */
1295 }
1296 return zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001297}
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001298#endif
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300/* Allocate a page in interleaved policy.
1301 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001302static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1303 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct zonelist *zl;
1306 struct page *page;
1307
Mel Gorman0e884602008-04-28 02:12:14 -07001308 zl = node_zonelist(nid, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 page = __alloc_pages(gfp, order, zl);
Mel Gormandd1a2392008-04-28 02:12:17 -07001310 if (page && page_zone(page) == zonelist_zone(&zl->_zonerefs[0]))
Christoph Lameterca889e62006-06-30 01:55:44 -07001311 inc_zone_page_state(page, NUMA_INTERLEAVE_HIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return page;
1313}
1314
1315/**
1316 * alloc_page_vma - Allocate a page for a VMA.
1317 *
1318 * @gfp:
1319 * %GFP_USER user allocation.
1320 * %GFP_KERNEL kernel allocations,
1321 * %GFP_HIGHMEM highmem/user allocations,
1322 * %GFP_FS allocation should not call back into a file system.
1323 * %GFP_ATOMIC don't sleep.
1324 *
1325 * @vma: Pointer to VMA or NULL if not available.
1326 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1327 *
1328 * This function allocates a page from the kernel page pool and applies
1329 * a NUMA policy associated with the VMA or the current process.
1330 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1331 * mm_struct of the VMA to prevent it from going away. Should be used for
1332 * all allocations for pages that will be mapped into
1333 * user space. Returns NULL when no page can be allocated.
1334 *
1335 * Should be called with the mm_sem of the vma hold.
1336 */
1337struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001338alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001340 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001341 struct zonelist *zl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001343 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1346 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001347
1348 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001349 if (unlikely(pol != &default_policy &&
1350 pol != current->mempolicy))
1351 __mpol_free(pol); /* finished with pol */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return alloc_page_interleave(gfp, 0, nid);
1353 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001354 zl = zonelist_policy(gfp, pol);
1355 if (pol != &default_policy && pol != current->mempolicy) {
1356 /*
1357 * slow path: ref counted policy -- shared or vma
1358 */
Mel Gorman19770b32008-04-28 02:12:18 -07001359 struct page *page = __alloc_pages_nodemask(gfp, 0,
1360 zl, nodemask_policy(gfp, pol));
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001361 __mpol_free(pol);
1362 return page;
1363 }
1364 /*
1365 * fast path: default or task policy
1366 */
Mel Gorman19770b32008-04-28 02:12:18 -07001367 return __alloc_pages_nodemask(gfp, 0, zl, nodemask_policy(gfp, pol));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370/**
1371 * alloc_pages_current - Allocate pages.
1372 *
1373 * @gfp:
1374 * %GFP_USER user allocation,
1375 * %GFP_KERNEL kernel allocation,
1376 * %GFP_HIGHMEM highmem allocation,
1377 * %GFP_FS don't call back into a file system.
1378 * %GFP_ATOMIC don't sleep.
1379 * @order: Power of two of allocation size in pages. 0 is a single page.
1380 *
1381 * Allocate a page from the kernel page pool. When not in
1382 * interrupt context and apply the current process NUMA policy.
1383 * Returns NULL when no page can be allocated.
1384 *
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001385 * Don't call cpuset_update_task_memory_state() unless
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 * 1) it's ok to take cpuset_sem (can WAIT), and
1387 * 2) allocating for current task (not interrupt).
1388 */
Al Virodd0fc662005-10-07 07:46:04 +01001389struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 struct mempolicy *pol = current->mempolicy;
1392
1393 if ((gfp & __GFP_WAIT) && !in_interrupt())
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001394 cpuset_update_task_memory_state();
Christoph Lameter9b819d22006-09-25 23:31:40 -07001395 if (!pol || in_interrupt() || (gfp & __GFP_THISNODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 pol = &default_policy;
1397 if (pol->policy == MPOL_INTERLEAVE)
1398 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
Mel Gorman19770b32008-04-28 02:12:18 -07001399 return __alloc_pages_nodemask(gfp, order,
1400 zonelist_policy(gfp, pol), nodemask_policy(gfp, pol));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402EXPORT_SYMBOL(alloc_pages_current);
1403
Paul Jackson42253992006-01-08 01:01:59 -08001404/*
1405 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1406 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1407 * with the mems_allowed returned by cpuset_mems_allowed(). This
1408 * keeps mempolicies cpuset relative after its cpuset moves. See
1409 * further kernel/cpuset.c update_nodemask().
1410 */
Paul Jackson42253992006-01-08 01:01:59 -08001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/* Slow path of a mempolicy copy */
1413struct mempolicy *__mpol_copy(struct mempolicy *old)
1414{
1415 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1416
1417 if (!new)
1418 return ERR_PTR(-ENOMEM);
Paul Jackson42253992006-01-08 01:01:59 -08001419 if (current_cpuset_is_being_rebound()) {
1420 nodemask_t mems = cpuset_mems_allowed(current);
1421 mpol_rebind_policy(old, &mems);
1422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 *new = *old;
1424 atomic_set(&new->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return new;
1426}
1427
David Rientjesf5b087b2008-04-28 02:12:27 -07001428static int mpol_match_intent(const struct mempolicy *a,
1429 const struct mempolicy *b)
1430{
1431 if (a->flags != b->flags)
1432 return 0;
1433 if (!mpol_store_user_nodemask(a))
1434 return 1;
1435 return nodes_equal(a->w.user_nodemask, b->w.user_nodemask);
1436}
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438/* Slow path of a mempolicy comparison */
1439int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1440{
1441 if (!a || !b)
1442 return 0;
1443 if (a->policy != b->policy)
1444 return 0;
David Rientjesf5b087b2008-04-28 02:12:27 -07001445 if (a->policy != MPOL_DEFAULT && !mpol_match_intent(a, b))
1446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 switch (a->policy) {
1448 case MPOL_DEFAULT:
1449 return 1;
Mel Gorman19770b32008-04-28 02:12:18 -07001450 case MPOL_BIND:
1451 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001453 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 case MPOL_PREFERRED:
1455 return a->v.preferred_node == b->v.preferred_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 default:
1457 BUG();
1458 return 0;
1459 }
1460}
1461
1462/* Slow path of a mpol destructor. */
1463void __mpol_free(struct mempolicy *p)
1464{
1465 if (!atomic_dec_and_test(&p->refcnt))
1466 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 p->policy = MPOL_DEFAULT;
1468 kmem_cache_free(policy_cache, p);
1469}
1470
1471/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 * Shared memory backing store policy support.
1473 *
1474 * Remember policies even when nobody has shared memory mapped.
1475 * The policies are kept in Red-Black tree linked from the inode.
1476 * They are protected by the sp->lock spinlock, which should be held
1477 * for any accesses to the tree.
1478 */
1479
1480/* lookup first element intersecting start-end */
1481/* Caller holds sp->lock */
1482static struct sp_node *
1483sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1484{
1485 struct rb_node *n = sp->root.rb_node;
1486
1487 while (n) {
1488 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1489
1490 if (start >= p->end)
1491 n = n->rb_right;
1492 else if (end <= p->start)
1493 n = n->rb_left;
1494 else
1495 break;
1496 }
1497 if (!n)
1498 return NULL;
1499 for (;;) {
1500 struct sp_node *w = NULL;
1501 struct rb_node *prev = rb_prev(n);
1502 if (!prev)
1503 break;
1504 w = rb_entry(prev, struct sp_node, nd);
1505 if (w->end <= start)
1506 break;
1507 n = prev;
1508 }
1509 return rb_entry(n, struct sp_node, nd);
1510}
1511
1512/* Insert a new shared policy into the list. */
1513/* Caller holds sp->lock */
1514static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1515{
1516 struct rb_node **p = &sp->root.rb_node;
1517 struct rb_node *parent = NULL;
1518 struct sp_node *nd;
1519
1520 while (*p) {
1521 parent = *p;
1522 nd = rb_entry(parent, struct sp_node, nd);
1523 if (new->start < nd->start)
1524 p = &(*p)->rb_left;
1525 else if (new->end > nd->end)
1526 p = &(*p)->rb_right;
1527 else
1528 BUG();
1529 }
1530 rb_link_node(&new->nd, parent, p);
1531 rb_insert_color(&new->nd, &sp->root);
Paul Mundt140d5a42007-07-15 23:38:16 -07001532 pr_debug("inserting %lx-%lx: %d\n", new->start, new->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 new->policy ? new->policy->policy : 0);
1534}
1535
1536/* Find shared policy intersecting idx */
1537struct mempolicy *
1538mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1539{
1540 struct mempolicy *pol = NULL;
1541 struct sp_node *sn;
1542
1543 if (!sp->root.rb_node)
1544 return NULL;
1545 spin_lock(&sp->lock);
1546 sn = sp_lookup(sp, idx, idx+1);
1547 if (sn) {
1548 mpol_get(sn->policy);
1549 pol = sn->policy;
1550 }
1551 spin_unlock(&sp->lock);
1552 return pol;
1553}
1554
1555static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1556{
Paul Mundt140d5a42007-07-15 23:38:16 -07001557 pr_debug("deleting %lx-l%lx\n", n->start, n->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 rb_erase(&n->nd, &sp->root);
1559 mpol_free(n->policy);
1560 kmem_cache_free(sn_cache, n);
1561}
1562
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001563static struct sp_node *sp_alloc(unsigned long start, unsigned long end,
1564 struct mempolicy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1567
1568 if (!n)
1569 return NULL;
1570 n->start = start;
1571 n->end = end;
1572 mpol_get(pol);
1573 n->policy = pol;
1574 return n;
1575}
1576
1577/* Replace a policy range. */
1578static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1579 unsigned long end, struct sp_node *new)
1580{
1581 struct sp_node *n, *new2 = NULL;
1582
1583restart:
1584 spin_lock(&sp->lock);
1585 n = sp_lookup(sp, start, end);
1586 /* Take care of old policies in the same range. */
1587 while (n && n->start < end) {
1588 struct rb_node *next = rb_next(&n->nd);
1589 if (n->start >= start) {
1590 if (n->end <= end)
1591 sp_delete(sp, n);
1592 else
1593 n->start = end;
1594 } else {
1595 /* Old policy spanning whole new range. */
1596 if (n->end > end) {
1597 if (!new2) {
1598 spin_unlock(&sp->lock);
1599 new2 = sp_alloc(end, n->end, n->policy);
1600 if (!new2)
1601 return -ENOMEM;
1602 goto restart;
1603 }
1604 n->end = start;
1605 sp_insert(sp, new2);
1606 new2 = NULL;
1607 break;
1608 } else
1609 n->end = start;
1610 }
1611 if (!next)
1612 break;
1613 n = rb_entry(next, struct sp_node, nd);
1614 }
1615 if (new)
1616 sp_insert(sp, new);
1617 spin_unlock(&sp->lock);
1618 if (new2) {
1619 mpol_free(new2->policy);
1620 kmem_cache_free(sn_cache, new2);
1621 }
1622 return 0;
1623}
1624
David Rientjesa3b51e02008-04-28 02:12:23 -07001625void mpol_shared_policy_init(struct shared_policy *info, unsigned short policy,
David Rientjes028fec42008-04-28 02:12:25 -07001626 unsigned short flags, nodemask_t *policy_nodes)
Robin Holt7339ff82006-01-14 13:20:48 -08001627{
1628 info->root = RB_ROOT;
1629 spin_lock_init(&info->lock);
1630
1631 if (policy != MPOL_DEFAULT) {
1632 struct mempolicy *newpol;
1633
1634 /* Falls back to MPOL_DEFAULT on any error */
David Rientjes028fec42008-04-28 02:12:25 -07001635 newpol = mpol_new(policy, flags, policy_nodes);
Robin Holt7339ff82006-01-14 13:20:48 -08001636 if (!IS_ERR(newpol)) {
1637 /* Create pseudo-vma that contains just the policy */
1638 struct vm_area_struct pvma;
1639
1640 memset(&pvma, 0, sizeof(struct vm_area_struct));
1641 /* Policy covers entire file */
1642 pvma.vm_end = TASK_SIZE;
1643 mpol_set_shared_policy(info, &pvma, newpol);
1644 mpol_free(newpol);
1645 }
1646 }
1647}
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649int mpol_set_shared_policy(struct shared_policy *info,
1650 struct vm_area_struct *vma, struct mempolicy *npol)
1651{
1652 int err;
1653 struct sp_node *new = NULL;
1654 unsigned long sz = vma_pages(vma);
1655
David Rientjes028fec42008-04-28 02:12:25 -07001656 pr_debug("set_shared_policy %lx sz %lu %d %d %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 vma->vm_pgoff,
David Rientjes028fec42008-04-28 02:12:25 -07001658 sz, npol ? npol->policy : -1,
1659 npol ? npol->flags : -1,
Paul Mundt140d5a42007-07-15 23:38:16 -07001660 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 if (npol) {
1663 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1664 if (!new)
1665 return -ENOMEM;
1666 }
1667 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1668 if (err && new)
1669 kmem_cache_free(sn_cache, new);
1670 return err;
1671}
1672
1673/* Free a backing policy store on inode delete. */
1674void mpol_free_shared_policy(struct shared_policy *p)
1675{
1676 struct sp_node *n;
1677 struct rb_node *next;
1678
1679 if (!p->root.rb_node)
1680 return;
1681 spin_lock(&p->lock);
1682 next = rb_first(&p->root);
1683 while (next) {
1684 n = rb_entry(next, struct sp_node, nd);
1685 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001686 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 mpol_free(n->policy);
1688 kmem_cache_free(sn_cache, n);
1689 }
1690 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
1693/* assumes fs == KERNEL_DS */
1694void __init numa_policy_init(void)
1695{
Paul Mundtb71636e2007-07-15 23:38:15 -07001696 nodemask_t interleave_nodes;
1697 unsigned long largest = 0;
1698 int nid, prefer = 0;
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 policy_cache = kmem_cache_create("numa_policy",
1701 sizeof(struct mempolicy),
Paul Mundt20c2df82007-07-20 10:11:58 +09001702 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 sn_cache = kmem_cache_create("shared_policy_node",
1705 sizeof(struct sp_node),
Paul Mundt20c2df82007-07-20 10:11:58 +09001706 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Paul Mundtb71636e2007-07-15 23:38:15 -07001708 /*
1709 * Set interleaving policy for system init. Interleaving is only
1710 * enabled across suitably sized nodes (default is >= 16MB), or
1711 * fall back to the largest node if they're all smaller.
1712 */
1713 nodes_clear(interleave_nodes);
Christoph Lameter56bbd652007-10-16 01:25:35 -07001714 for_each_node_state(nid, N_HIGH_MEMORY) {
Paul Mundtb71636e2007-07-15 23:38:15 -07001715 unsigned long total_pages = node_present_pages(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Paul Mundtb71636e2007-07-15 23:38:15 -07001717 /* Preserve the largest node */
1718 if (largest < total_pages) {
1719 largest = total_pages;
1720 prefer = nid;
1721 }
1722
1723 /* Interleave this node? */
1724 if ((total_pages << PAGE_SHIFT) >= (16 << 20))
1725 node_set(nid, interleave_nodes);
1726 }
1727
1728 /* All too small, use the largest */
1729 if (unlikely(nodes_empty(interleave_nodes)))
1730 node_set(prefer, interleave_nodes);
1731
David Rientjes028fec42008-04-28 02:12:25 -07001732 if (do_set_mempolicy(MPOL_INTERLEAVE, 0, &interleave_nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 printk("numa_policy_init: interleaving failed\n");
1734}
1735
Christoph Lameter8bccd852005-10-29 18:16:59 -07001736/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737void numa_default_policy(void)
1738{
David Rientjes028fec42008-04-28 02:12:25 -07001739 do_set_mempolicy(MPOL_DEFAULT, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
Paul Jackson68860ec2005-10-30 15:02:36 -08001741
1742/* Migrate a policy to a different set of nodes */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001743static void mpol_rebind_policy(struct mempolicy *pol,
1744 const nodemask_t *newmask)
Paul Jackson68860ec2005-10-30 15:02:36 -08001745{
1746 nodemask_t tmp;
David Rientjesf5b087b2008-04-28 02:12:27 -07001747 int static_nodes;
Paul Jackson68860ec2005-10-30 15:02:36 -08001748
1749 if (!pol)
1750 return;
David Rientjesf5b087b2008-04-28 02:12:27 -07001751 static_nodes = pol->flags & MPOL_F_STATIC_NODES;
1752 if (!mpol_store_user_nodemask(pol) &&
1753 nodes_equal(pol->w.cpuset_mems_allowed, *newmask))
Paul Jackson74cb2152006-01-08 01:01:56 -08001754 return;
Paul Jackson68860ec2005-10-30 15:02:36 -08001755
1756 switch (pol->policy) {
1757 case MPOL_DEFAULT:
1758 break;
Mel Gorman19770b32008-04-28 02:12:18 -07001759 case MPOL_BIND:
1760 /* Fall through */
Paul Jackson68860ec2005-10-30 15:02:36 -08001761 case MPOL_INTERLEAVE:
David Rientjesf5b087b2008-04-28 02:12:27 -07001762 if (static_nodes)
1763 nodes_and(tmp, pol->w.user_nodemask, *newmask);
1764 else {
1765 nodes_remap(tmp, pol->v.nodes,
1766 pol->w.cpuset_mems_allowed, *newmask);
1767 pol->w.cpuset_mems_allowed = *newmask;
1768 }
Paul Jackson68860ec2005-10-30 15:02:36 -08001769 pol->v.nodes = tmp;
David Rientjesf5b087b2008-04-28 02:12:27 -07001770 if (!node_isset(current->il_next, tmp)) {
1771 current->il_next = next_node(current->il_next, tmp);
1772 if (current->il_next >= MAX_NUMNODES)
1773 current->il_next = first_node(tmp);
1774 if (current->il_next >= MAX_NUMNODES)
1775 current->il_next = numa_node_id();
1776 }
Paul Jackson68860ec2005-10-30 15:02:36 -08001777 break;
1778 case MPOL_PREFERRED:
David Rientjesf5b087b2008-04-28 02:12:27 -07001779 if (static_nodes) {
1780 int node = first_node(pol->w.user_nodemask);
1781
1782 if (node_isset(node, *newmask))
1783 pol->v.preferred_node = node;
1784 else
1785 pol->v.preferred_node = -1;
1786 } else {
1787 pol->v.preferred_node = node_remap(pol->v.preferred_node,
1788 pol->w.cpuset_mems_allowed, *newmask);
1789 pol->w.cpuset_mems_allowed = *newmask;
1790 }
Paul Jackson68860ec2005-10-30 15:02:36 -08001791 break;
Paul Jackson68860ec2005-10-30 15:02:36 -08001792 default:
1793 BUG();
1794 break;
1795 }
1796}
1797
1798/*
Paul Jackson74cb2152006-01-08 01:01:56 -08001799 * Wrapper for mpol_rebind_policy() that just requires task
1800 * pointer, and updates task mempolicy.
Paul Jackson68860ec2005-10-30 15:02:36 -08001801 */
Paul Jackson74cb2152006-01-08 01:01:56 -08001802
1803void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new)
Paul Jackson68860ec2005-10-30 15:02:36 -08001804{
Paul Jackson74cb2152006-01-08 01:01:56 -08001805 mpol_rebind_policy(tsk->mempolicy, new);
Paul Jackson68860ec2005-10-30 15:02:36 -08001806}
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001807
1808/*
Paul Jackson42253992006-01-08 01:01:59 -08001809 * Rebind each vma in mm to new nodemask.
1810 *
1811 * Call holding a reference to mm. Takes mm->mmap_sem during call.
1812 */
1813
1814void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
1815{
1816 struct vm_area_struct *vma;
1817
1818 down_write(&mm->mmap_sem);
1819 for (vma = mm->mmap; vma; vma = vma->vm_next)
1820 mpol_rebind_policy(vma->vm_policy, new);
1821 up_write(&mm->mmap_sem);
1822}
1823
1824/*
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001825 * Display pages allocated per node and memory policy via /proc.
1826 */
1827
Helge Deller15ad7cd2006-12-06 20:40:36 -08001828static const char * const policy_types[] =
1829 { "default", "prefer", "bind", "interleave" };
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001830
1831/*
1832 * Convert a mempolicy into a string.
1833 * Returns the number of characters in buffer (if positive)
1834 * or an error (negative)
1835 */
1836static inline int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol)
1837{
1838 char *p = buffer;
1839 int l;
1840 nodemask_t nodes;
David Rientjesa3b51e02008-04-28 02:12:23 -07001841 unsigned short mode = pol ? pol->policy : MPOL_DEFAULT;
David Rientjesf5b087b2008-04-28 02:12:27 -07001842 unsigned short flags = pol ? pol->flags : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001843
1844 switch (mode) {
1845 case MPOL_DEFAULT:
1846 nodes_clear(nodes);
1847 break;
1848
1849 case MPOL_PREFERRED:
1850 nodes_clear(nodes);
1851 node_set(pol->v.preferred_node, nodes);
1852 break;
1853
1854 case MPOL_BIND:
Mel Gorman19770b32008-04-28 02:12:18 -07001855 /* Fall through */
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001856 case MPOL_INTERLEAVE:
1857 nodes = pol->v.nodes;
1858 break;
1859
1860 default:
1861 BUG();
1862 return -EFAULT;
1863 }
1864
1865 l = strlen(policy_types[mode]);
1866 if (buffer + maxlen < p + l + 1)
1867 return -ENOSPC;
1868
1869 strcpy(p, policy_types[mode]);
1870 p += l;
1871
David Rientjesf5b087b2008-04-28 02:12:27 -07001872 if (flags) {
1873 int need_bar = 0;
1874
1875 if (buffer + maxlen < p + 2)
1876 return -ENOSPC;
1877 *p++ = '=';
1878
1879 if (flags & MPOL_F_STATIC_NODES)
1880 p += sprintf(p, "%sstatic", need_bar++ ? "|" : "");
1881 }
1882
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001883 if (!nodes_empty(nodes)) {
1884 if (buffer + maxlen < p + 2)
1885 return -ENOSPC;
1886 *p++ = '=';
1887 p += nodelist_scnprintf(p, buffer + maxlen - p, nodes);
1888 }
1889 return p - buffer;
1890}
1891
1892struct numa_maps {
1893 unsigned long pages;
1894 unsigned long anon;
Christoph Lameter397874d2006-03-06 15:42:53 -08001895 unsigned long active;
1896 unsigned long writeback;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001897 unsigned long mapcount_max;
Christoph Lameter397874d2006-03-06 15:42:53 -08001898 unsigned long dirty;
1899 unsigned long swapcache;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001900 unsigned long node[MAX_NUMNODES];
1901};
1902
Christoph Lameter397874d2006-03-06 15:42:53 -08001903static void gather_stats(struct page *page, void *private, int pte_dirty)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001904{
1905 struct numa_maps *md = private;
1906 int count = page_mapcount(page);
1907
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001908 md->pages++;
Christoph Lameter397874d2006-03-06 15:42:53 -08001909 if (pte_dirty || PageDirty(page))
1910 md->dirty++;
1911
1912 if (PageSwapCache(page))
1913 md->swapcache++;
1914
1915 if (PageActive(page))
1916 md->active++;
1917
1918 if (PageWriteback(page))
1919 md->writeback++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001920
1921 if (PageAnon(page))
1922 md->anon++;
1923
Christoph Lameter397874d2006-03-06 15:42:53 -08001924 if (count > md->mapcount_max)
1925 md->mapcount_max = count;
1926
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001927 md->node[page_to_nid(page)]++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001928}
1929
Andrew Morton7f709ed2006-03-07 21:55:22 -08001930#ifdef CONFIG_HUGETLB_PAGE
Christoph Lameter397874d2006-03-06 15:42:53 -08001931static void check_huge_range(struct vm_area_struct *vma,
1932 unsigned long start, unsigned long end,
1933 struct numa_maps *md)
1934{
1935 unsigned long addr;
1936 struct page *page;
1937
1938 for (addr = start; addr < end; addr += HPAGE_SIZE) {
1939 pte_t *ptep = huge_pte_offset(vma->vm_mm, addr & HPAGE_MASK);
1940 pte_t pte;
1941
1942 if (!ptep)
1943 continue;
1944
1945 pte = *ptep;
1946 if (pte_none(pte))
1947 continue;
1948
1949 page = pte_page(pte);
1950 if (!page)
1951 continue;
1952
1953 gather_stats(page, md, pte_dirty(*ptep));
1954 }
1955}
Andrew Morton7f709ed2006-03-07 21:55:22 -08001956#else
1957static inline void check_huge_range(struct vm_area_struct *vma,
1958 unsigned long start, unsigned long end,
1959 struct numa_maps *md)
1960{
1961}
1962#endif
Christoph Lameter397874d2006-03-06 15:42:53 -08001963
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001964int show_numa_map(struct seq_file *m, void *v)
1965{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001966 struct proc_maps_private *priv = m->private;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001967 struct vm_area_struct *vma = v;
1968 struct numa_maps *md;
Christoph Lameter397874d2006-03-06 15:42:53 -08001969 struct file *file = vma->vm_file;
1970 struct mm_struct *mm = vma->vm_mm;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001971 struct mempolicy *pol;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001972 int n;
1973 char buffer[50];
1974
Christoph Lameter397874d2006-03-06 15:42:53 -08001975 if (!mm)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001976 return 0;
1977
1978 md = kzalloc(sizeof(struct numa_maps), GFP_KERNEL);
1979 if (!md)
1980 return 0;
1981
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001982 pol = get_vma_policy(priv->task, vma, vma->vm_start);
1983 mpol_to_str(buffer, sizeof(buffer), pol);
1984 /*
1985 * unref shared or other task's mempolicy
1986 */
1987 if (pol != &default_policy && pol != current->mempolicy)
1988 __mpol_free(pol);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001989
Christoph Lameter397874d2006-03-06 15:42:53 -08001990 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001991
Christoph Lameter397874d2006-03-06 15:42:53 -08001992 if (file) {
1993 seq_printf(m, " file=");
Jan Blunckc32c2f62008-02-14 19:38:43 -08001994 seq_path(m, &file->f_path, "\n\t= ");
Christoph Lameter397874d2006-03-06 15:42:53 -08001995 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
1996 seq_printf(m, " heap");
1997 } else if (vma->vm_start <= mm->start_stack &&
1998 vma->vm_end >= mm->start_stack) {
1999 seq_printf(m, " stack");
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002000 }
Christoph Lameter397874d2006-03-06 15:42:53 -08002001
2002 if (is_vm_hugetlb_page(vma)) {
2003 check_huge_range(vma, vma->vm_start, vma->vm_end, md);
2004 seq_printf(m, " huge");
2005 } else {
2006 check_pgd_range(vma, vma->vm_start, vma->vm_end,
Christoph Lameter56bbd652007-10-16 01:25:35 -07002007 &node_states[N_HIGH_MEMORY], MPOL_MF_STATS, md);
Christoph Lameter397874d2006-03-06 15:42:53 -08002008 }
2009
2010 if (!md->pages)
2011 goto out;
2012
2013 if (md->anon)
2014 seq_printf(m," anon=%lu",md->anon);
2015
2016 if (md->dirty)
2017 seq_printf(m," dirty=%lu",md->dirty);
2018
2019 if (md->pages != md->anon && md->pages != md->dirty)
2020 seq_printf(m, " mapped=%lu", md->pages);
2021
2022 if (md->mapcount_max > 1)
2023 seq_printf(m, " mapmax=%lu", md->mapcount_max);
2024
2025 if (md->swapcache)
2026 seq_printf(m," swapcache=%lu", md->swapcache);
2027
2028 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
2029 seq_printf(m," active=%lu", md->active);
2030
2031 if (md->writeback)
2032 seq_printf(m," writeback=%lu", md->writeback);
2033
Christoph Lameter56bbd652007-10-16 01:25:35 -07002034 for_each_node_state(n, N_HIGH_MEMORY)
Christoph Lameter397874d2006-03-06 15:42:53 -08002035 if (md->node[n])
2036 seq_printf(m, " N%d=%lu", n, md->node[n]);
2037out:
2038 seq_putc(m, '\n');
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002039 kfree(md);
2040
2041 if (m->count < m->size)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002042 m->version = (vma != priv->tail_vma) ? vma->vm_start : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002043 return 0;
2044}