blob: ccbdb22147bb9ca16b6c4728e006c884a951a40e [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>
81#include <linux/interrupt.h>
82#include <linux/init.h>
83#include <linux/compat.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080084#include <linux/swap.h>
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080085#include <linux/seq_file.h>
86#include <linux/proc_fs.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080087#include <linux/migrate.h>
Christoph Lameter95a402c2006-06-23 02:03:53 -070088#include <linux/rmap.h>
David Quigley86c3a762006-06-23 02:04:02 -070089#include <linux/security.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <asm/tlbflush.h>
92#include <asm/uaccess.h>
93
Christoph Lameter38e35862006-01-08 01:01:01 -080094/* Internal flags */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080095#define MPOL_MF_DISCONTIG_OK (MPOL_MF_INTERNAL << 0) /* Skip checks for continuous vmas */
Christoph Lameter38e35862006-01-08 01:01:01 -080096#define MPOL_MF_INVERT (MPOL_MF_INTERNAL << 1) /* Invert check for nodemask */
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080097#define MPOL_MF_STATS (MPOL_MF_INTERNAL << 2) /* Gather statistics */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080098
Pekka Enbergfcc234f2006-03-22 00:08:13 -080099static struct kmem_cache *policy_cache;
100static struct kmem_cache *sn_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* Highest zone. An specific allocation for a zone below that is not
103 policied. */
Christoph Lameter62672762007-02-10 01:43:07 -0800104enum zone_type policy_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Andi Kleend42c6992005-07-06 19:56:03 +0200106struct mempolicy default_policy = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .refcnt = ATOMIC_INIT(1), /* never free it */
108 .policy = MPOL_DEFAULT,
109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* Do sanity checking on a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700112static int mpol_check_policy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Andi Kleendfcd3c02005-10-29 18:15:48 -0700114 int empty = nodes_empty(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 switch (mode) {
117 case MPOL_DEFAULT:
118 if (!empty)
119 return -EINVAL;
120 break;
121 case MPOL_BIND:
122 case MPOL_INTERLEAVE:
123 /* Preferred will only use the first bit, but allow
124 more for now. */
125 if (empty)
126 return -EINVAL;
127 break;
128 }
Andi Kleendfcd3c02005-10-29 18:15:48 -0700129 return nodes_subset(*nodes, node_online_map) ? 0 : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
Andi Kleendd942ae2006-02-17 01:39:16 +0100131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* Generate a custom zonelist for the BIND policy. */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700133static struct zonelist *bind_zonelist(nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 struct zonelist *zl;
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700136 int num, max, nd;
137 enum zone_type k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Andi Kleendfcd3c02005-10-29 18:15:48 -0700139 max = 1 + MAX_NR_ZONES * nodes_weight(*nodes);
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800140 max++; /* space for zlcache_ptr (see mmzone.h) */
Andi Kleendd942ae2006-02-17 01:39:16 +0100141 zl = kmalloc(sizeof(struct zone *) * max, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (!zl)
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800143 return ERR_PTR(-ENOMEM);
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800144 zl->zlcache_ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 num = 0;
Andi Kleendd942ae2006-02-17 01:39:16 +0100146 /* First put in the highest zones from all nodes, then all the next
147 lower zones etc. Avoid empty zones because the memory allocator
148 doesn't like them. If you implement node hot removal you
149 have to fix that. */
Mel Gormanb377fd32007-08-22 14:02:05 -0700150 k = MAX_NR_ZONES - 1;
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700151 while (1) {
Andi Kleendd942ae2006-02-17 01:39:16 +0100152 for_each_node_mask(nd, *nodes) {
153 struct zone *z = &NODE_DATA(nd)->node_zones[k];
154 if (z->present_pages > 0)
155 zl->zones[num++] = z;
156 }
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700157 if (k == 0)
158 break;
159 k--;
Andi Kleendd942ae2006-02-17 01:39:16 +0100160 }
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800161 if (num == 0) {
162 kfree(zl);
163 return ERR_PTR(-EINVAL);
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 zl->zones[num] = NULL;
166 return zl;
167}
168
169/* Create a new policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700170static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct mempolicy *policy;
173
Paul Mundt140d5a42007-07-15 23:38:16 -0700174 pr_debug("setting mode %d nodes[0] %lx\n",
175 mode, nodes ? nodes_addr(*nodes)[0] : -1);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (mode == MPOL_DEFAULT)
178 return NULL;
179 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
180 if (!policy)
181 return ERR_PTR(-ENOMEM);
182 atomic_set(&policy->refcnt, 1);
183 switch (mode) {
184 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700185 policy->v.nodes = *nodes;
Andi Kleen8f493d72006-01-03 00:07:28 +0100186 if (nodes_weight(*nodes) == 0) {
187 kmem_cache_free(policy_cache, policy);
188 return ERR_PTR(-EINVAL);
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
191 case MPOL_PREFERRED:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700192 policy->v.preferred_node = first_node(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (policy->v.preferred_node >= MAX_NUMNODES)
194 policy->v.preferred_node = -1;
195 break;
196 case MPOL_BIND:
197 policy->v.zonelist = bind_zonelist(nodes);
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800198 if (IS_ERR(policy->v.zonelist)) {
199 void *error_code = policy->v.zonelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 kmem_cache_free(policy_cache, policy);
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800201 return error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203 break;
204 }
205 policy->policy = mode;
Paul Jackson74cb2152006-01-08 01:01:56 -0800206 policy->cpuset_mems_allowed = cpuset_mems_allowed(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return policy;
208}
209
Christoph Lameter397874d2006-03-06 15:42:53 -0800210static void gather_stats(struct page *, void *, int pte_dirty);
Christoph Lameterfc301282006-01-18 17:42:29 -0800211static void migrate_page_add(struct page *page, struct list_head *pagelist,
212 unsigned long flags);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800213
Christoph Lameter38e35862006-01-08 01:01:01 -0800214/* Scan through pages checking if pages follow certain conditions. */
Nick Pigginb5810032005-10-29 18:16:12 -0700215static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800216 unsigned long addr, unsigned long end,
217 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800218 void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Hugh Dickins91612e02005-06-21 17:15:07 -0700220 pte_t *orig_pte;
221 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700222 spinlock_t *ptl;
Hugh Dickins941150a2005-06-21 17:15:06 -0700223
Hugh Dickins705e87c2005-10-29 18:16:27 -0700224 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700225 do {
Linus Torvalds6aab3412005-11-28 14:34:23 -0800226 struct page *page;
Andy Whitcroft25ba77c2006-12-06 20:33:03 -0800227 int nid;
Hugh Dickins91612e02005-06-21 17:15:07 -0700228
229 if (!pte_present(*pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800231 page = vm_normal_page(vma, addr, *pte);
232 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 continue;
Nick Piggin053837f2006-01-18 17:42:27 -0800234 /*
235 * The check for PageReserved here is important to avoid
236 * handling zero pages and other pages that may have been
237 * marked special by the system.
238 *
239 * If the PageReserved would not be checked here then f.e.
240 * the location of the zero page could have an influence
241 * on MPOL_MF_STRICT, zero pages would be counted for
242 * the per node stats, and there would be useless attempts
243 * to put zero pages on the migration list.
244 */
Christoph Lameterf4598c82006-01-12 01:05:20 -0800245 if (PageReserved(page))
246 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800247 nid = page_to_nid(page);
Christoph Lameter38e35862006-01-08 01:01:01 -0800248 if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT))
249 continue;
250
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800251 if (flags & MPOL_MF_STATS)
Christoph Lameter397874d2006-03-06 15:42:53 -0800252 gather_stats(page, private, pte_dirty(*pte));
Nick Piggin053837f2006-01-18 17:42:27 -0800253 else if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
Christoph Lameterfc301282006-01-18 17:42:29 -0800254 migrate_page_add(page, private, flags);
Christoph Lameter38e35862006-01-08 01:01:01 -0800255 else
256 break;
Hugh Dickins91612e02005-06-21 17:15:07 -0700257 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700258 pte_unmap_unlock(orig_pte, ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700259 return addr != end;
260}
261
Nick Pigginb5810032005-10-29 18:16:12 -0700262static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800263 unsigned long addr, unsigned long end,
264 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800265 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700266{
267 pmd_t *pmd;
268 unsigned long next;
269
270 pmd = pmd_offset(pud, addr);
271 do {
272 next = pmd_addr_end(addr, end);
273 if (pmd_none_or_clear_bad(pmd))
274 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800275 if (check_pte_range(vma, pmd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800276 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700277 return -EIO;
278 } while (pmd++, addr = next, addr != end);
279 return 0;
280}
281
Nick Pigginb5810032005-10-29 18:16:12 -0700282static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800283 unsigned long addr, unsigned long end,
284 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800285 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700286{
287 pud_t *pud;
288 unsigned long next;
289
290 pud = pud_offset(pgd, addr);
291 do {
292 next = pud_addr_end(addr, end);
293 if (pud_none_or_clear_bad(pud))
294 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800295 if (check_pmd_range(vma, pud, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800296 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700297 return -EIO;
298 } while (pud++, addr = next, addr != end);
299 return 0;
300}
301
Nick Pigginb5810032005-10-29 18:16:12 -0700302static inline int check_pgd_range(struct vm_area_struct *vma,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800303 unsigned long addr, unsigned long end,
304 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800305 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700306{
307 pgd_t *pgd;
308 unsigned long next;
309
Nick Pigginb5810032005-10-29 18:16:12 -0700310 pgd = pgd_offset(vma->vm_mm, addr);
Hugh Dickins91612e02005-06-21 17:15:07 -0700311 do {
312 next = pgd_addr_end(addr, end);
313 if (pgd_none_or_clear_bad(pgd))
314 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800315 if (check_pud_range(vma, pgd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800316 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700317 return -EIO;
318 } while (pgd++, addr = next, addr != end);
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800322/*
323 * Check if all pages in a range are on a set of nodes.
324 * If pagelist != NULL then isolate pages from the LRU and
325 * put them on the pagelist.
326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static struct vm_area_struct *
328check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
Christoph Lameter38e35862006-01-08 01:01:01 -0800329 const nodemask_t *nodes, unsigned long flags, void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 int err;
332 struct vm_area_struct *first, *vma, *prev;
333
Christoph Lameter90036ee2006-03-16 23:03:59 -0800334 if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) {
Christoph Lameter90036ee2006-03-16 23:03:59 -0800335
Christoph Lameterb20a3502006-03-22 00:09:12 -0800336 err = migrate_prep();
337 if (err)
338 return ERR_PTR(err);
Christoph Lameter90036ee2006-03-16 23:03:59 -0800339 }
Nick Piggin053837f2006-01-18 17:42:27 -0800340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 first = find_vma(mm, start);
342 if (!first)
343 return ERR_PTR(-EFAULT);
344 prev = NULL;
345 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800346 if (!(flags & MPOL_MF_DISCONTIG_OK)) {
347 if (!vma->vm_next && vma->vm_end < end)
348 return ERR_PTR(-EFAULT);
349 if (prev && prev->vm_end < vma->vm_start)
350 return ERR_PTR(-EFAULT);
351 }
352 if (!is_vm_hugetlb_page(vma) &&
353 ((flags & MPOL_MF_STRICT) ||
354 ((flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) &&
355 vma_migratable(vma)))) {
Andi Kleen5b952b32005-09-13 01:25:08 -0700356 unsigned long endvma = vma->vm_end;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800357
Andi Kleen5b952b32005-09-13 01:25:08 -0700358 if (endvma > end)
359 endvma = end;
360 if (vma->vm_start > start)
361 start = vma->vm_start;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800362 err = check_pgd_range(vma, start, endvma, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800363 flags, private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (err) {
365 first = ERR_PTR(err);
366 break;
367 }
368 }
369 prev = vma;
370 }
371 return first;
372}
373
374/* Apply policy to a single VMA */
375static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
376{
377 int err = 0;
378 struct mempolicy *old = vma->vm_policy;
379
Paul Mundt140d5a42007-07-15 23:38:16 -0700380 pr_debug("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 vma->vm_start, vma->vm_end, vma->vm_pgoff,
382 vma->vm_ops, vma->vm_file,
383 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
384
385 if (vma->vm_ops && vma->vm_ops->set_policy)
386 err = vma->vm_ops->set_policy(vma, new);
387 if (!err) {
388 mpol_get(new);
389 vma->vm_policy = new;
390 mpol_free(old);
391 }
392 return err;
393}
394
395/* Step 2: apply policy to a range and do splits. */
396static int mbind_range(struct vm_area_struct *vma, unsigned long start,
397 unsigned long end, struct mempolicy *new)
398{
399 struct vm_area_struct *next;
400 int err;
401
402 err = 0;
403 for (; vma && vma->vm_start < end; vma = next) {
404 next = vma->vm_next;
405 if (vma->vm_start < start)
406 err = split_vma(vma->vm_mm, vma, start, 1);
407 if (!err && vma->vm_end > end)
408 err = split_vma(vma->vm_mm, vma, end, 0);
409 if (!err)
410 err = policy_vma(vma, new);
411 if (err)
412 break;
413 }
414 return err;
415}
416
Christoph Lameter8bccd852005-10-29 18:16:59 -0700417static int contextualize_policy(int mode, nodemask_t *nodes)
418{
419 if (!nodes)
420 return 0;
421
Paul Jacksoncf2a4732006-01-08 01:01:54 -0800422 cpuset_update_task_memory_state();
Paul Jackson59665142006-01-08 01:01:47 -0800423 if (!cpuset_nodes_subset_current_mems_allowed(*nodes))
424 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700425 return mpol_check_policy(mode, nodes);
426}
427
Paul Jacksonc61afb12006-03-24 03:16:08 -0800428
429/*
430 * Update task->flags PF_MEMPOLICY bit: set iff non-default
431 * mempolicy. Allows more rapid checking of this (combined perhaps
432 * with other PF_* flag bits) on memory allocation hot code paths.
433 *
434 * If called from outside this file, the task 'p' should -only- be
435 * a newly forked child not yet visible on the task list, because
436 * manipulating the task flags of a visible task is not safe.
437 *
438 * The above limitation is why this routine has the funny name
439 * mpol_fix_fork_child_flag().
440 *
441 * It is also safe to call this with a task pointer of current,
442 * which the static wrapper mpol_set_task_struct_flag() does,
443 * for use within this file.
444 */
445
446void mpol_fix_fork_child_flag(struct task_struct *p)
447{
448 if (p->mempolicy)
449 p->flags |= PF_MEMPOLICY;
450 else
451 p->flags &= ~PF_MEMPOLICY;
452}
453
454static void mpol_set_task_struct_flag(void)
455{
456 mpol_fix_fork_child_flag(current);
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/* Set the process memory policy */
Christoph Lameter8bccd852005-10-29 18:16:59 -0700460long do_set_mempolicy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct mempolicy *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Christoph Lameter8bccd852005-10-29 18:16:59 -0700464 if (contextualize_policy(mode, nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700466 new = mpol_new(mode, nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (IS_ERR(new))
468 return PTR_ERR(new);
469 mpol_free(current->mempolicy);
470 current->mempolicy = new;
Paul Jacksonc61afb12006-03-24 03:16:08 -0800471 mpol_set_task_struct_flag();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (new && new->policy == MPOL_INTERLEAVE)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700473 current->il_next = first_node(new->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475}
476
477/* Fill a zone bitmap for a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700478static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 int i;
481
Andi Kleendfcd3c02005-10-29 18:15:48 -0700482 nodes_clear(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 switch (p->policy) {
484 case MPOL_BIND:
485 for (i = 0; p->v.zonelist->zones[i]; i++)
Christoph Lameter89fa3022006-09-25 23:31:55 -0700486 node_set(zone_to_nid(p->v.zonelist->zones[i]),
Christoph Lameter8bccd852005-10-29 18:16:59 -0700487 *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489 case MPOL_DEFAULT:
490 break;
491 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700492 *nodes = p->v.nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 case MPOL_PREFERRED:
495 /* or use current node instead of online map? */
496 if (p->v.preferred_node < 0)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700497 *nodes = node_online_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 else
Andi Kleendfcd3c02005-10-29 18:15:48 -0700499 node_set(p->v.preferred_node, *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 break;
501 default:
502 BUG();
503 }
504}
505
506static int lookup_node(struct mm_struct *mm, unsigned long addr)
507{
508 struct page *p;
509 int err;
510
511 err = get_user_pages(current, mm, addr & PAGE_MASK, 1, 0, 0, &p, NULL);
512 if (err >= 0) {
513 err = page_to_nid(p);
514 put_page(p);
515 }
516 return err;
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/* Retrieve NUMA policy */
Christoph Lameter8bccd852005-10-29 18:16:59 -0700520long do_get_mempolicy(int *policy, nodemask_t *nmask,
521 unsigned long addr, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Christoph Lameter8bccd852005-10-29 18:16:59 -0700523 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct mm_struct *mm = current->mm;
525 struct vm_area_struct *vma = NULL;
526 struct mempolicy *pol = current->mempolicy;
527
Paul Jacksoncf2a4732006-01-08 01:01:54 -0800528 cpuset_update_task_memory_state();
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700529 if (flags &
530 ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR|MPOL_F_MEMS_ALLOWED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return -EINVAL;
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700532
533 if (flags & MPOL_F_MEMS_ALLOWED) {
534 if (flags & (MPOL_F_NODE|MPOL_F_ADDR))
535 return -EINVAL;
536 *policy = 0; /* just so it's initialized */
537 *nmask = cpuset_current_mems_allowed;
538 return 0;
539 }
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (flags & MPOL_F_ADDR) {
542 down_read(&mm->mmap_sem);
543 vma = find_vma_intersection(mm, addr, addr+1);
544 if (!vma) {
545 up_read(&mm->mmap_sem);
546 return -EFAULT;
547 }
548 if (vma->vm_ops && vma->vm_ops->get_policy)
549 pol = vma->vm_ops->get_policy(vma, addr);
550 else
551 pol = vma->vm_policy;
552 } else if (addr)
553 return -EINVAL;
554
555 if (!pol)
556 pol = &default_policy;
557
558 if (flags & MPOL_F_NODE) {
559 if (flags & MPOL_F_ADDR) {
560 err = lookup_node(mm, addr);
561 if (err < 0)
562 goto out;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700563 *policy = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 } else if (pol == current->mempolicy &&
565 pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter8bccd852005-10-29 18:16:59 -0700566 *policy = current->il_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 } else {
568 err = -EINVAL;
569 goto out;
570 }
571 } else
Christoph Lameter8bccd852005-10-29 18:16:59 -0700572 *policy = pol->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (vma) {
575 up_read(&current->mm->mmap_sem);
576 vma = NULL;
577 }
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 err = 0;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700580 if (nmask)
581 get_zonemask(pol, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 out:
584 if (vma)
585 up_read(&current->mm->mmap_sem);
586 return err;
587}
588
Christoph Lameterb20a3502006-03-22 00:09:12 -0800589#ifdef CONFIG_MIGRATION
Christoph Lameter8bccd852005-10-29 18:16:59 -0700590/*
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800591 * page migration
592 */
Christoph Lameterfc301282006-01-18 17:42:29 -0800593static void migrate_page_add(struct page *page, struct list_head *pagelist,
594 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800595{
596 /*
Christoph Lameterfc301282006-01-18 17:42:29 -0800597 * Avoid migrating a page that is shared with others.
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800598 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800599 if ((flags & MPOL_MF_MOVE_ALL) || page_mapcount(page) == 1)
600 isolate_lru_page(page, pagelist);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800601}
602
Christoph Lameter742755a2006-06-23 02:03:55 -0700603static struct page *new_node_page(struct page *page, unsigned long node, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700604{
Mel Gorman769848c2007-07-17 04:03:05 -0700605 return alloc_pages_node(node, GFP_HIGHUSER_MOVABLE, 0);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700606}
607
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800608/*
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800609 * Migrate pages from one node to a target node.
610 * Returns error or the number of pages not migrated.
611 */
612int migrate_to_node(struct mm_struct *mm, int source, int dest, int flags)
613{
614 nodemask_t nmask;
615 LIST_HEAD(pagelist);
616 int err = 0;
617
618 nodes_clear(nmask);
619 node_set(source, nmask);
620
621 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nmask,
622 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
623
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700624 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700625 err = migrate_pages(&pagelist, new_node_page, dest);
626
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800627 return err;
628}
629
630/*
631 * Move pages between the two nodesets so as to preserve the physical
632 * layout as much as possible.
Christoph Lameter39743882006-01-08 01:00:51 -0800633 *
634 * Returns the number of page that could not be moved.
635 */
636int do_migrate_pages(struct mm_struct *mm,
637 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
638{
639 LIST_HEAD(pagelist);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800640 int busy = 0;
641 int err = 0;
642 nodemask_t tmp;
Christoph Lameter39743882006-01-08 01:00:51 -0800643
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800644 down_read(&mm->mmap_sem);
Christoph Lameter39743882006-01-08 01:00:51 -0800645
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700646 err = migrate_vmas(mm, from_nodes, to_nodes, flags);
647 if (err)
648 goto out;
649
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800650/*
651 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
652 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
653 * bit in 'tmp', and return that <source, dest> pair for migration.
654 * The pair of nodemasks 'to' and 'from' define the map.
655 *
656 * If no pair of bits is found that way, fallback to picking some
657 * pair of 'source' and 'dest' bits that are not the same. If the
658 * 'source' and 'dest' bits are the same, this represents a node
659 * that will be migrating to itself, so no pages need move.
660 *
661 * If no bits are left in 'tmp', or if all remaining bits left
662 * in 'tmp' correspond to the same bit in 'to', return false
663 * (nothing left to migrate).
664 *
665 * This lets us pick a pair of nodes to migrate between, such that
666 * if possible the dest node is not already occupied by some other
667 * source node, minimizing the risk of overloading the memory on a
668 * node that would happen if we migrated incoming memory to a node
669 * before migrating outgoing memory source that same node.
670 *
671 * A single scan of tmp is sufficient. As we go, we remember the
672 * most recent <s, d> pair that moved (s != d). If we find a pair
673 * that not only moved, but what's better, moved to an empty slot
674 * (d is not set in tmp), then we break out then, with that pair.
675 * Otherwise when we finish scannng from_tmp, we at least have the
676 * most recent <s, d> pair that moved. If we get all the way through
677 * the scan of tmp without finding any node that moved, much less
678 * moved to an empty node, then there is nothing left worth migrating.
679 */
Christoph Lameterd4984712006-01-08 01:00:55 -0800680
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800681 tmp = *from_nodes;
682 while (!nodes_empty(tmp)) {
683 int s,d;
684 int source = -1;
685 int dest = 0;
686
687 for_each_node_mask(s, tmp) {
688 d = node_remap(s, *from_nodes, *to_nodes);
689 if (s == d)
690 continue;
691
692 source = s; /* Node moved. Memorize */
693 dest = d;
694
695 /* dest not in remaining from nodes? */
696 if (!node_isset(dest, tmp))
697 break;
698 }
699 if (source == -1)
700 break;
701
702 node_clear(source, tmp);
703 err = migrate_to_node(mm, source, dest, flags);
704 if (err > 0)
705 busy += err;
706 if (err < 0)
707 break;
Christoph Lameter39743882006-01-08 01:00:51 -0800708 }
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700709out:
Christoph Lameter39743882006-01-08 01:00:51 -0800710 up_read(&mm->mmap_sem);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800711 if (err < 0)
712 return err;
713 return busy;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800714
Christoph Lameter39743882006-01-08 01:00:51 -0800715}
716
Christoph Lameter742755a2006-06-23 02:03:55 -0700717static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700718{
719 struct vm_area_struct *vma = (struct vm_area_struct *)private;
720
Mel Gorman769848c2007-07-17 04:03:05 -0700721 return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma,
722 page_address_in_vma(page, vma));
Christoph Lameter95a402c2006-06-23 02:03:53 -0700723}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800724#else
725
726static void migrate_page_add(struct page *page, struct list_head *pagelist,
727 unsigned long flags)
728{
729}
730
731int do_migrate_pages(struct mm_struct *mm,
732 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
733{
734 return -ENOSYS;
735}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700736
Keith Owens69939742006-10-11 01:21:28 -0700737static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700738{
739 return NULL;
740}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800741#endif
742
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800743long do_mbind(unsigned long start, unsigned long len,
744 unsigned long mode, nodemask_t *nmask, unsigned long flags)
745{
746 struct vm_area_struct *vma;
747 struct mm_struct *mm = current->mm;
748 struct mempolicy *new;
749 unsigned long end;
750 int err;
751 LIST_HEAD(pagelist);
752
753 if ((flags & ~(unsigned long)(MPOL_MF_STRICT |
754 MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
755 || mode > MPOL_MAX)
756 return -EINVAL;
Christoph Lameter74c00242006-03-14 19:50:21 -0800757 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800758 return -EPERM;
759
760 if (start & ~PAGE_MASK)
761 return -EINVAL;
762
763 if (mode == MPOL_DEFAULT)
764 flags &= ~MPOL_MF_STRICT;
765
766 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
767 end = start + len;
768
769 if (end < start)
770 return -EINVAL;
771 if (end == start)
772 return 0;
773
774 if (mpol_check_policy(mode, nmask))
775 return -EINVAL;
776
777 new = mpol_new(mode, nmask);
778 if (IS_ERR(new))
779 return PTR_ERR(new);
780
781 /*
782 * If we are using the default policy then operation
783 * on discontinuous address spaces is okay after all
784 */
785 if (!new)
786 flags |= MPOL_MF_DISCONTIG_OK;
787
Paul Mundt140d5a42007-07-15 23:38:16 -0700788 pr_debug("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
789 mode, nmask ? nodes_addr(*nmask)[0] : -1);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800790
791 down_write(&mm->mmap_sem);
792 vma = check_range(mm, start, end, nmask,
793 flags | MPOL_MF_INVERT, &pagelist);
794
795 err = PTR_ERR(vma);
796 if (!IS_ERR(vma)) {
797 int nr_failed = 0;
798
799 err = mbind_range(vma, start, end, new);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800800
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800801 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700802 nr_failed = migrate_pages(&pagelist, new_vma_page,
803 (unsigned long)vma);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800804
805 if (!err && nr_failed && (flags & MPOL_MF_STRICT))
806 err = -EIO;
807 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800808
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800809 up_write(&mm->mmap_sem);
810 mpol_free(new);
811 return err;
812}
813
Christoph Lameter39743882006-01-08 01:00:51 -0800814/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700815 * User space interface with variable sized bitmaps for nodelists.
816 */
817
818/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800819static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700820 unsigned long maxnode)
821{
822 unsigned long k;
823 unsigned long nlongs;
824 unsigned long endmask;
825
826 --maxnode;
827 nodes_clear(*nodes);
828 if (maxnode == 0 || !nmask)
829 return 0;
Andi Kleena9c930b2006-02-20 18:27:59 -0800830 if (maxnode > PAGE_SIZE*BITS_PER_BYTE)
Chris Wright636f13c2006-02-17 13:59:36 -0800831 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700832
833 nlongs = BITS_TO_LONGS(maxnode);
834 if ((maxnode % BITS_PER_LONG) == 0)
835 endmask = ~0UL;
836 else
837 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
838
839 /* When the user specified more nodes than supported just check
840 if the non supported part is all zero. */
841 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
842 if (nlongs > PAGE_SIZE/sizeof(long))
843 return -EINVAL;
844 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
845 unsigned long t;
846 if (get_user(t, nmask + k))
847 return -EFAULT;
848 if (k == nlongs - 1) {
849 if (t & endmask)
850 return -EINVAL;
851 } else if (t)
852 return -EINVAL;
853 }
854 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
855 endmask = ~0UL;
856 }
857
858 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
859 return -EFAULT;
860 nodes_addr(*nodes)[nlongs-1] &= endmask;
861 return 0;
862}
863
864/* Copy a kernel node mask to user space */
865static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
866 nodemask_t *nodes)
867{
868 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
869 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
870
871 if (copy > nbytes) {
872 if (copy > PAGE_SIZE)
873 return -EINVAL;
874 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
875 return -EFAULT;
876 copy = nbytes;
877 }
878 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
879}
880
881asmlinkage long sys_mbind(unsigned long start, unsigned long len,
882 unsigned long mode,
883 unsigned long __user *nmask, unsigned long maxnode,
884 unsigned flags)
885{
886 nodemask_t nodes;
887 int err;
888
889 err = get_nodes(&nodes, nmask, maxnode);
890 if (err)
891 return err;
Christoph Lameter30150f82007-01-22 20:40:45 -0800892#ifdef CONFIG_CPUSETS
893 /* Restrict the nodes to the allowed nodes in the cpuset */
894 nodes_and(nodes, nodes, current->mems_allowed);
895#endif
Christoph Lameter8bccd852005-10-29 18:16:59 -0700896 return do_mbind(start, len, mode, &nodes, flags);
897}
898
899/* Set the process memory policy */
900asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
901 unsigned long maxnode)
902{
903 int err;
904 nodemask_t nodes;
905
906 if (mode < 0 || mode > MPOL_MAX)
907 return -EINVAL;
908 err = get_nodes(&nodes, nmask, maxnode);
909 if (err)
910 return err;
911 return do_set_mempolicy(mode, &nodes);
912}
913
Christoph Lameter39743882006-01-08 01:00:51 -0800914asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
915 const unsigned long __user *old_nodes,
916 const unsigned long __user *new_nodes)
917{
918 struct mm_struct *mm;
919 struct task_struct *task;
920 nodemask_t old;
921 nodemask_t new;
922 nodemask_t task_nodes;
923 int err;
924
925 err = get_nodes(&old, old_nodes, maxnode);
926 if (err)
927 return err;
928
929 err = get_nodes(&new, new_nodes, maxnode);
930 if (err)
931 return err;
932
933 /* Find the mm_struct */
934 read_lock(&tasklist_lock);
935 task = pid ? find_task_by_pid(pid) : current;
936 if (!task) {
937 read_unlock(&tasklist_lock);
938 return -ESRCH;
939 }
940 mm = get_task_mm(task);
941 read_unlock(&tasklist_lock);
942
943 if (!mm)
944 return -EINVAL;
945
946 /*
947 * Check if this process has the right to modify the specified
948 * process. The right exists if the process has administrative
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800949 * capabilities, superuser privileges or the same
Christoph Lameter39743882006-01-08 01:00:51 -0800950 * userid as the target process.
951 */
952 if ((current->euid != task->suid) && (current->euid != task->uid) &&
953 (current->uid != task->suid) && (current->uid != task->uid) &&
Christoph Lameter74c00242006-03-14 19:50:21 -0800954 !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800955 err = -EPERM;
956 goto out;
957 }
958
959 task_nodes = cpuset_mems_allowed(task);
960 /* Is the user allowed to access the target nodes? */
Christoph Lameter74c00242006-03-14 19:50:21 -0800961 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800962 err = -EPERM;
963 goto out;
964 }
965
Christoph Lameter3b42d282007-08-31 00:12:08 -0700966 if (!nodes_subset(new, node_online_map)) {
967 err = -EINVAL;
968 goto out;
969 }
970
David Quigley86c3a762006-06-23 02:04:02 -0700971 err = security_task_movememory(task);
972 if (err)
973 goto out;
974
Christoph Lameter511030b2006-02-28 16:58:57 -0800975 err = do_migrate_pages(mm, &old, &new,
Christoph Lameter74c00242006-03-14 19:50:21 -0800976 capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
Christoph Lameter39743882006-01-08 01:00:51 -0800977out:
978 mmput(mm);
979 return err;
980}
981
982
Christoph Lameter8bccd852005-10-29 18:16:59 -0700983/* Retrieve NUMA policy */
984asmlinkage long sys_get_mempolicy(int __user *policy,
985 unsigned long __user *nmask,
986 unsigned long maxnode,
987 unsigned long addr, unsigned long flags)
988{
989 int err, pval;
990 nodemask_t nodes;
991
992 if (nmask != NULL && maxnode < MAX_NUMNODES)
993 return -EINVAL;
994
995 err = do_get_mempolicy(&pval, &nodes, addr, flags);
996
997 if (err)
998 return err;
999
1000 if (policy && put_user(pval, policy))
1001 return -EFAULT;
1002
1003 if (nmask)
1004 err = copy_nodes_to_user(nmask, maxnode, &nodes);
1005
1006 return err;
1007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009#ifdef CONFIG_COMPAT
1010
1011asmlinkage long compat_sys_get_mempolicy(int __user *policy,
1012 compat_ulong_t __user *nmask,
1013 compat_ulong_t maxnode,
1014 compat_ulong_t addr, compat_ulong_t flags)
1015{
1016 long err;
1017 unsigned long __user *nm = NULL;
1018 unsigned long nr_bits, alloc_size;
1019 DECLARE_BITMAP(bm, MAX_NUMNODES);
1020
1021 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1022 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1023
1024 if (nmask)
1025 nm = compat_alloc_user_space(alloc_size);
1026
1027 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
1028
1029 if (!err && nmask) {
1030 err = copy_from_user(bm, nm, alloc_size);
1031 /* ensure entire bitmap is zeroed */
1032 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
1033 err |= compat_put_bitmap(nmask, bm, nr_bits);
1034 }
1035
1036 return err;
1037}
1038
1039asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
1040 compat_ulong_t maxnode)
1041{
1042 long err = 0;
1043 unsigned long __user *nm = NULL;
1044 unsigned long nr_bits, alloc_size;
1045 DECLARE_BITMAP(bm, MAX_NUMNODES);
1046
1047 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1048 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1049
1050 if (nmask) {
1051 err = compat_get_bitmap(bm, nmask, nr_bits);
1052 nm = compat_alloc_user_space(alloc_size);
1053 err |= copy_to_user(nm, bm, alloc_size);
1054 }
1055
1056 if (err)
1057 return -EFAULT;
1058
1059 return sys_set_mempolicy(mode, nm, nr_bits+1);
1060}
1061
1062asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
1063 compat_ulong_t mode, compat_ulong_t __user *nmask,
1064 compat_ulong_t maxnode, compat_ulong_t flags)
1065{
1066 long err = 0;
1067 unsigned long __user *nm = NULL;
1068 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001069 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1072 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1073
1074 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001075 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -07001077 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
1080 if (err)
1081 return -EFAULT;
1082
1083 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
1084}
1085
1086#endif
1087
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001088/*
1089 * get_vma_policy(@task, @vma, @addr)
1090 * @task - task for fallback if vma policy == default
1091 * @vma - virtual memory area whose policy is sought
1092 * @addr - address in @vma for shared policy lookup
1093 *
1094 * Returns effective policy for a VMA at specified address.
1095 * Falls back to @task or system default policy, as necessary.
1096 * Returned policy has extra reference count if shared, vma,
1097 * or some other task's policy [show_numa_maps() can pass
1098 * @task != current]. It is the caller's responsibility to
1099 * free the reference in these cases.
1100 */
Christoph Lameter48fce342006-01-08 01:01:03 -08001101static struct mempolicy * get_vma_policy(struct task_struct *task,
1102 struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001104 struct mempolicy *pol = task->mempolicy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001105 int shared_pol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 if (vma) {
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001108 if (vma->vm_ops && vma->vm_ops->get_policy) {
Christoph Lameter8bccd852005-10-29 18:16:59 -07001109 pol = vma->vm_ops->get_policy(vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001110 shared_pol = 1; /* if pol non-NULL, add ref below */
1111 } else if (vma->vm_policy &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 vma->vm_policy->policy != MPOL_DEFAULT)
1113 pol = vma->vm_policy;
1114 }
1115 if (!pol)
1116 pol = &default_policy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001117 else if (!shared_pol && pol != current->mempolicy)
1118 mpol_get(pol); /* vma or other task's policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return pol;
1120}
1121
1122/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +01001123static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125 int nd;
1126
1127 switch (policy->policy) {
1128 case MPOL_PREFERRED:
1129 nd = policy->v.preferred_node;
1130 if (nd < 0)
1131 nd = numa_node_id();
1132 break;
1133 case MPOL_BIND:
1134 /* Lower zones don't get a policy applied */
1135 /* Careful: current->mems_allowed might have moved */
Christoph Lameter19655d32006-09-25 23:31:19 -07001136 if (gfp_zone(gfp) >= policy_zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
1138 return policy->v.zonelist;
1139 /*FALL THROUGH*/
1140 case MPOL_INTERLEAVE: /* should not happen */
1141 case MPOL_DEFAULT:
1142 nd = numa_node_id();
1143 break;
1144 default:
1145 nd = 0;
1146 BUG();
1147 }
Al Viroaf4ca452005-10-21 02:55:38 -04001148 return NODE_DATA(nd)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151/* Do dynamic interleaving for a process */
1152static unsigned interleave_nodes(struct mempolicy *policy)
1153{
1154 unsigned nid, next;
1155 struct task_struct *me = current;
1156
1157 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001158 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -07001160 next = first_node(policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 me->il_next = next;
1162 return nid;
1163}
1164
Christoph Lameterdc85da12006-01-18 17:42:36 -08001165/*
1166 * Depending on the memory policy provide a node from which to allocate the
1167 * next slab entry.
1168 */
1169unsigned slab_node(struct mempolicy *policy)
1170{
Christoph Lameter765c4502006-09-27 01:50:08 -07001171 int pol = policy ? policy->policy : MPOL_DEFAULT;
1172
1173 switch (pol) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001174 case MPOL_INTERLEAVE:
1175 return interleave_nodes(policy);
1176
1177 case MPOL_BIND:
1178 /*
1179 * Follow bind policy behavior and start allocation at the
1180 * first node.
1181 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07001182 return zone_to_nid(policy->v.zonelist->zones[0]);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001183
1184 case MPOL_PREFERRED:
1185 if (policy->v.preferred_node >= 0)
1186 return policy->v.preferred_node;
1187 /* Fall through */
1188
1189 default:
1190 return numa_node_id();
1191 }
1192}
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194/* Do static interleaving for a VMA with known offset. */
1195static unsigned offset_il_node(struct mempolicy *pol,
1196 struct vm_area_struct *vma, unsigned long off)
1197{
Andi Kleendfcd3c02005-10-29 18:15:48 -07001198 unsigned nnodes = nodes_weight(pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 unsigned target = (unsigned)off % nnodes;
1200 int c;
1201 int nid = -1;
1202
1203 c = 0;
1204 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001205 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 c++;
1207 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return nid;
1209}
1210
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001211/* Determine a node number for interleave */
1212static inline unsigned interleave_nid(struct mempolicy *pol,
1213 struct vm_area_struct *vma, unsigned long addr, int shift)
1214{
1215 if (vma) {
1216 unsigned long off;
1217
Nishanth Aravamudan3b98b082006-08-31 21:27:53 -07001218 /*
1219 * for small pages, there is no difference between
1220 * shift and PAGE_SHIFT, so the bit-shift is safe.
1221 * for huge pages, since vm_pgoff is in units of small
1222 * pages, we need to shift off the always 0 bits to get
1223 * a useful offset.
1224 */
1225 BUG_ON(shift < PAGE_SHIFT);
1226 off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001227 off += (addr - vma->vm_start) >> shift;
1228 return offset_il_node(pol, vma, off);
1229 } else
1230 return interleave_nodes(pol);
1231}
1232
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001233#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001234/*
1235 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1236 * @vma = virtual memory area whose policy is sought
1237 * @addr = address in @vma for shared policy lookup and interleave policy
1238 * @gfp_flags = for requested zone
1239 * @mpol = pointer to mempolicy pointer for reference counted 'BIND policy
1240 *
1241 * Returns a zonelist suitable for a huge page allocation.
1242 * If the effective policy is 'BIND, returns pointer to policy's zonelist.
1243 * If it is also a policy for which get_vma_policy() returns an extra
1244 * reference, we must hold that reference until after allocation.
1245 * In that case, return policy via @mpol so hugetlb allocation can drop
1246 * the reference. For non-'BIND referenced policies, we can/do drop the
1247 * reference here, so the caller doesn't need to know about the special case
1248 * for default and current task policy.
1249 */
Mel Gorman396faf02007-07-17 04:03:13 -07001250struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001251 gfp_t gfp_flags, struct mempolicy **mpol)
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001252{
1253 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001254 struct zonelist *zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001255
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001256 *mpol = NULL; /* probably no unref needed */
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001257 if (pol->policy == MPOL_INTERLEAVE) {
1258 unsigned nid;
1259
1260 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001261 __mpol_free(pol); /* finished with pol */
Mel Gorman396faf02007-07-17 04:03:13 -07001262 return NODE_DATA(nid)->node_zonelists + gfp_zone(gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001263 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001264
1265 zl = zonelist_policy(GFP_HIGHUSER, pol);
1266 if (unlikely(pol != &default_policy && pol != current->mempolicy)) {
1267 if (pol->policy != MPOL_BIND)
1268 __mpol_free(pol); /* finished with pol */
1269 else
1270 *mpol = pol; /* unref needed after allocation */
1271 }
1272 return zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001273}
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001274#endif
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276/* Allocate a page in interleaved policy.
1277 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001278static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1279 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 struct zonelist *zl;
1282 struct page *page;
1283
Al Viroaf4ca452005-10-21 02:55:38 -04001284 zl = NODE_DATA(nid)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 page = __alloc_pages(gfp, order, zl);
Christoph Lameterca889e62006-06-30 01:55:44 -07001286 if (page && page_zone(page) == zl->zones[0])
1287 inc_zone_page_state(page, NUMA_INTERLEAVE_HIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return page;
1289}
1290
1291/**
1292 * alloc_page_vma - Allocate a page for a VMA.
1293 *
1294 * @gfp:
1295 * %GFP_USER user allocation.
1296 * %GFP_KERNEL kernel allocations,
1297 * %GFP_HIGHMEM highmem/user allocations,
1298 * %GFP_FS allocation should not call back into a file system.
1299 * %GFP_ATOMIC don't sleep.
1300 *
1301 * @vma: Pointer to VMA or NULL if not available.
1302 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1303 *
1304 * This function allocates a page from the kernel page pool and applies
1305 * a NUMA policy associated with the VMA or the current process.
1306 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1307 * mm_struct of the VMA to prevent it from going away. Should be used for
1308 * all allocations for pages that will be mapped into
1309 * user space. Returns NULL when no page can be allocated.
1310 *
1311 * Should be called with the mm_sem of the vma hold.
1312 */
1313struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001314alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001316 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001317 struct zonelist *zl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001319 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1322 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001323
1324 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return alloc_page_interleave(gfp, 0, nid);
1326 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001327 zl = zonelist_policy(gfp, pol);
1328 if (pol != &default_policy && pol != current->mempolicy) {
1329 /*
1330 * slow path: ref counted policy -- shared or vma
1331 */
1332 struct page *page = __alloc_pages(gfp, 0, zl);
1333 __mpol_free(pol);
1334 return page;
1335 }
1336 /*
1337 * fast path: default or task policy
1338 */
1339 return __alloc_pages(gfp, 0, zl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342/**
1343 * alloc_pages_current - Allocate pages.
1344 *
1345 * @gfp:
1346 * %GFP_USER user allocation,
1347 * %GFP_KERNEL kernel allocation,
1348 * %GFP_HIGHMEM highmem allocation,
1349 * %GFP_FS don't call back into a file system.
1350 * %GFP_ATOMIC don't sleep.
1351 * @order: Power of two of allocation size in pages. 0 is a single page.
1352 *
1353 * Allocate a page from the kernel page pool. When not in
1354 * interrupt context and apply the current process NUMA policy.
1355 * Returns NULL when no page can be allocated.
1356 *
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001357 * Don't call cpuset_update_task_memory_state() unless
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * 1) it's ok to take cpuset_sem (can WAIT), and
1359 * 2) allocating for current task (not interrupt).
1360 */
Al Virodd0fc662005-10-07 07:46:04 +01001361struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 struct mempolicy *pol = current->mempolicy;
1364
1365 if ((gfp & __GFP_WAIT) && !in_interrupt())
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001366 cpuset_update_task_memory_state();
Christoph Lameter9b819d22006-09-25 23:31:40 -07001367 if (!pol || in_interrupt() || (gfp & __GFP_THISNODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 pol = &default_policy;
1369 if (pol->policy == MPOL_INTERLEAVE)
1370 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
1371 return __alloc_pages(gfp, order, zonelist_policy(gfp, pol));
1372}
1373EXPORT_SYMBOL(alloc_pages_current);
1374
Paul Jackson42253992006-01-08 01:01:59 -08001375/*
1376 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1377 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1378 * with the mems_allowed returned by cpuset_mems_allowed(). This
1379 * keeps mempolicies cpuset relative after its cpuset moves. See
1380 * further kernel/cpuset.c update_nodemask().
1381 */
1382void *cpuset_being_rebound;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/* Slow path of a mempolicy copy */
1385struct mempolicy *__mpol_copy(struct mempolicy *old)
1386{
1387 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1388
1389 if (!new)
1390 return ERR_PTR(-ENOMEM);
Paul Jackson42253992006-01-08 01:01:59 -08001391 if (current_cpuset_is_being_rebound()) {
1392 nodemask_t mems = cpuset_mems_allowed(current);
1393 mpol_rebind_policy(old, &mems);
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 *new = *old;
1396 atomic_set(&new->refcnt, 1);
1397 if (new->policy == MPOL_BIND) {
1398 int sz = ksize(old->v.zonelist);
Christoph Lametere94b1762006-12-06 20:33:17 -08001399 new->v.zonelist = kmemdup(old->v.zonelist, sz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (!new->v.zonelist) {
1401 kmem_cache_free(policy_cache, new);
1402 return ERR_PTR(-ENOMEM);
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405 return new;
1406}
1407
1408/* Slow path of a mempolicy comparison */
1409int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1410{
1411 if (!a || !b)
1412 return 0;
1413 if (a->policy != b->policy)
1414 return 0;
1415 switch (a->policy) {
1416 case MPOL_DEFAULT:
1417 return 1;
1418 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001419 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 case MPOL_PREFERRED:
1421 return a->v.preferred_node == b->v.preferred_node;
1422 case MPOL_BIND: {
1423 int i;
1424 for (i = 0; a->v.zonelist->zones[i]; i++)
1425 if (a->v.zonelist->zones[i] != b->v.zonelist->zones[i])
1426 return 0;
1427 return b->v.zonelist->zones[i] == NULL;
1428 }
1429 default:
1430 BUG();
1431 return 0;
1432 }
1433}
1434
1435/* Slow path of a mpol destructor. */
1436void __mpol_free(struct mempolicy *p)
1437{
1438 if (!atomic_dec_and_test(&p->refcnt))
1439 return;
1440 if (p->policy == MPOL_BIND)
1441 kfree(p->v.zonelist);
1442 p->policy = MPOL_DEFAULT;
1443 kmem_cache_free(policy_cache, p);
1444}
1445
1446/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 * Shared memory backing store policy support.
1448 *
1449 * Remember policies even when nobody has shared memory mapped.
1450 * The policies are kept in Red-Black tree linked from the inode.
1451 * They are protected by the sp->lock spinlock, which should be held
1452 * for any accesses to the tree.
1453 */
1454
1455/* lookup first element intersecting start-end */
1456/* Caller holds sp->lock */
1457static struct sp_node *
1458sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1459{
1460 struct rb_node *n = sp->root.rb_node;
1461
1462 while (n) {
1463 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1464
1465 if (start >= p->end)
1466 n = n->rb_right;
1467 else if (end <= p->start)
1468 n = n->rb_left;
1469 else
1470 break;
1471 }
1472 if (!n)
1473 return NULL;
1474 for (;;) {
1475 struct sp_node *w = NULL;
1476 struct rb_node *prev = rb_prev(n);
1477 if (!prev)
1478 break;
1479 w = rb_entry(prev, struct sp_node, nd);
1480 if (w->end <= start)
1481 break;
1482 n = prev;
1483 }
1484 return rb_entry(n, struct sp_node, nd);
1485}
1486
1487/* Insert a new shared policy into the list. */
1488/* Caller holds sp->lock */
1489static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1490{
1491 struct rb_node **p = &sp->root.rb_node;
1492 struct rb_node *parent = NULL;
1493 struct sp_node *nd;
1494
1495 while (*p) {
1496 parent = *p;
1497 nd = rb_entry(parent, struct sp_node, nd);
1498 if (new->start < nd->start)
1499 p = &(*p)->rb_left;
1500 else if (new->end > nd->end)
1501 p = &(*p)->rb_right;
1502 else
1503 BUG();
1504 }
1505 rb_link_node(&new->nd, parent, p);
1506 rb_insert_color(&new->nd, &sp->root);
Paul Mundt140d5a42007-07-15 23:38:16 -07001507 pr_debug("inserting %lx-%lx: %d\n", new->start, new->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 new->policy ? new->policy->policy : 0);
1509}
1510
1511/* Find shared policy intersecting idx */
1512struct mempolicy *
1513mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1514{
1515 struct mempolicy *pol = NULL;
1516 struct sp_node *sn;
1517
1518 if (!sp->root.rb_node)
1519 return NULL;
1520 spin_lock(&sp->lock);
1521 sn = sp_lookup(sp, idx, idx+1);
1522 if (sn) {
1523 mpol_get(sn->policy);
1524 pol = sn->policy;
1525 }
1526 spin_unlock(&sp->lock);
1527 return pol;
1528}
1529
1530static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1531{
Paul Mundt140d5a42007-07-15 23:38:16 -07001532 pr_debug("deleting %lx-l%lx\n", n->start, n->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 rb_erase(&n->nd, &sp->root);
1534 mpol_free(n->policy);
1535 kmem_cache_free(sn_cache, n);
1536}
1537
1538struct sp_node *
1539sp_alloc(unsigned long start, unsigned long end, struct mempolicy *pol)
1540{
1541 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1542
1543 if (!n)
1544 return NULL;
1545 n->start = start;
1546 n->end = end;
1547 mpol_get(pol);
1548 n->policy = pol;
1549 return n;
1550}
1551
1552/* Replace a policy range. */
1553static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1554 unsigned long end, struct sp_node *new)
1555{
1556 struct sp_node *n, *new2 = NULL;
1557
1558restart:
1559 spin_lock(&sp->lock);
1560 n = sp_lookup(sp, start, end);
1561 /* Take care of old policies in the same range. */
1562 while (n && n->start < end) {
1563 struct rb_node *next = rb_next(&n->nd);
1564 if (n->start >= start) {
1565 if (n->end <= end)
1566 sp_delete(sp, n);
1567 else
1568 n->start = end;
1569 } else {
1570 /* Old policy spanning whole new range. */
1571 if (n->end > end) {
1572 if (!new2) {
1573 spin_unlock(&sp->lock);
1574 new2 = sp_alloc(end, n->end, n->policy);
1575 if (!new2)
1576 return -ENOMEM;
1577 goto restart;
1578 }
1579 n->end = start;
1580 sp_insert(sp, new2);
1581 new2 = NULL;
1582 break;
1583 } else
1584 n->end = start;
1585 }
1586 if (!next)
1587 break;
1588 n = rb_entry(next, struct sp_node, nd);
1589 }
1590 if (new)
1591 sp_insert(sp, new);
1592 spin_unlock(&sp->lock);
1593 if (new2) {
1594 mpol_free(new2->policy);
1595 kmem_cache_free(sn_cache, new2);
1596 }
1597 return 0;
1598}
1599
Robin Holt7339ff82006-01-14 13:20:48 -08001600void mpol_shared_policy_init(struct shared_policy *info, int policy,
1601 nodemask_t *policy_nodes)
1602{
1603 info->root = RB_ROOT;
1604 spin_lock_init(&info->lock);
1605
1606 if (policy != MPOL_DEFAULT) {
1607 struct mempolicy *newpol;
1608
1609 /* Falls back to MPOL_DEFAULT on any error */
1610 newpol = mpol_new(policy, policy_nodes);
1611 if (!IS_ERR(newpol)) {
1612 /* Create pseudo-vma that contains just the policy */
1613 struct vm_area_struct pvma;
1614
1615 memset(&pvma, 0, sizeof(struct vm_area_struct));
1616 /* Policy covers entire file */
1617 pvma.vm_end = TASK_SIZE;
1618 mpol_set_shared_policy(info, &pvma, newpol);
1619 mpol_free(newpol);
1620 }
1621 }
1622}
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624int mpol_set_shared_policy(struct shared_policy *info,
1625 struct vm_area_struct *vma, struct mempolicy *npol)
1626{
1627 int err;
1628 struct sp_node *new = NULL;
1629 unsigned long sz = vma_pages(vma);
1630
Paul Mundt140d5a42007-07-15 23:38:16 -07001631 pr_debug("set_shared_policy %lx sz %lu %d %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 vma->vm_pgoff,
1633 sz, npol? npol->policy : -1,
Paul Mundt140d5a42007-07-15 23:38:16 -07001634 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 if (npol) {
1637 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1638 if (!new)
1639 return -ENOMEM;
1640 }
1641 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1642 if (err && new)
1643 kmem_cache_free(sn_cache, new);
1644 return err;
1645}
1646
1647/* Free a backing policy store on inode delete. */
1648void mpol_free_shared_policy(struct shared_policy *p)
1649{
1650 struct sp_node *n;
1651 struct rb_node *next;
1652
1653 if (!p->root.rb_node)
1654 return;
1655 spin_lock(&p->lock);
1656 next = rb_first(&p->root);
1657 while (next) {
1658 n = rb_entry(next, struct sp_node, nd);
1659 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001660 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 mpol_free(n->policy);
1662 kmem_cache_free(sn_cache, n);
1663 }
1664 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
1667/* assumes fs == KERNEL_DS */
1668void __init numa_policy_init(void)
1669{
Paul Mundtb71636e2007-07-15 23:38:15 -07001670 nodemask_t interleave_nodes;
1671 unsigned long largest = 0;
1672 int nid, prefer = 0;
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 policy_cache = kmem_cache_create("numa_policy",
1675 sizeof(struct mempolicy),
Paul Mundt20c2df82007-07-20 10:11:58 +09001676 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 sn_cache = kmem_cache_create("shared_policy_node",
1679 sizeof(struct sp_node),
Paul Mundt20c2df82007-07-20 10:11:58 +09001680 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Paul Mundtb71636e2007-07-15 23:38:15 -07001682 /*
1683 * Set interleaving policy for system init. Interleaving is only
1684 * enabled across suitably sized nodes (default is >= 16MB), or
1685 * fall back to the largest node if they're all smaller.
1686 */
1687 nodes_clear(interleave_nodes);
1688 for_each_online_node(nid) {
1689 unsigned long total_pages = node_present_pages(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Paul Mundtb71636e2007-07-15 23:38:15 -07001691 /* Preserve the largest node */
1692 if (largest < total_pages) {
1693 largest = total_pages;
1694 prefer = nid;
1695 }
1696
1697 /* Interleave this node? */
1698 if ((total_pages << PAGE_SHIFT) >= (16 << 20))
1699 node_set(nid, interleave_nodes);
1700 }
1701
1702 /* All too small, use the largest */
1703 if (unlikely(nodes_empty(interleave_nodes)))
1704 node_set(prefer, interleave_nodes);
1705
1706 if (do_set_mempolicy(MPOL_INTERLEAVE, &interleave_nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 printk("numa_policy_init: interleaving failed\n");
1708}
1709
Christoph Lameter8bccd852005-10-29 18:16:59 -07001710/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711void numa_default_policy(void)
1712{
Christoph Lameter8bccd852005-10-29 18:16:59 -07001713 do_set_mempolicy(MPOL_DEFAULT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
Paul Jackson68860ec2005-10-30 15:02:36 -08001715
1716/* Migrate a policy to a different set of nodes */
Paul Jackson74cb2152006-01-08 01:01:56 -08001717void mpol_rebind_policy(struct mempolicy *pol, const nodemask_t *newmask)
Paul Jackson68860ec2005-10-30 15:02:36 -08001718{
Paul Jackson74cb2152006-01-08 01:01:56 -08001719 nodemask_t *mpolmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001720 nodemask_t tmp;
1721
1722 if (!pol)
1723 return;
Paul Jackson74cb2152006-01-08 01:01:56 -08001724 mpolmask = &pol->cpuset_mems_allowed;
1725 if (nodes_equal(*mpolmask, *newmask))
1726 return;
Paul Jackson68860ec2005-10-30 15:02:36 -08001727
1728 switch (pol->policy) {
1729 case MPOL_DEFAULT:
1730 break;
1731 case MPOL_INTERLEAVE:
Paul Jackson74cb2152006-01-08 01:01:56 -08001732 nodes_remap(tmp, pol->v.nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001733 pol->v.nodes = tmp;
Paul Jackson74cb2152006-01-08 01:01:56 -08001734 *mpolmask = *newmask;
1735 current->il_next = node_remap(current->il_next,
1736 *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001737 break;
1738 case MPOL_PREFERRED:
1739 pol->v.preferred_node = node_remap(pol->v.preferred_node,
Paul Jackson74cb2152006-01-08 01:01:56 -08001740 *mpolmask, *newmask);
1741 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001742 break;
1743 case MPOL_BIND: {
1744 nodemask_t nodes;
1745 struct zone **z;
1746 struct zonelist *zonelist;
1747
1748 nodes_clear(nodes);
1749 for (z = pol->v.zonelist->zones; *z; z++)
Christoph Lameter89fa3022006-09-25 23:31:55 -07001750 node_set(zone_to_nid(*z), nodes);
Paul Jackson74cb2152006-01-08 01:01:56 -08001751 nodes_remap(tmp, nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001752 nodes = tmp;
1753
1754 zonelist = bind_zonelist(&nodes);
1755
1756 /* If no mem, then zonelist is NULL and we keep old zonelist.
1757 * If that old zonelist has no remaining mems_allowed nodes,
1758 * then zonelist_policy() will "FALL THROUGH" to MPOL_DEFAULT.
1759 */
1760
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -08001761 if (!IS_ERR(zonelist)) {
Paul Jackson68860ec2005-10-30 15:02:36 -08001762 /* Good - got mem - substitute new zonelist */
1763 kfree(pol->v.zonelist);
1764 pol->v.zonelist = zonelist;
1765 }
Paul Jackson74cb2152006-01-08 01:01:56 -08001766 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001767 break;
1768 }
1769 default:
1770 BUG();
1771 break;
1772 }
1773}
1774
1775/*
Paul Jackson74cb2152006-01-08 01:01:56 -08001776 * Wrapper for mpol_rebind_policy() that just requires task
1777 * pointer, and updates task mempolicy.
Paul Jackson68860ec2005-10-30 15:02:36 -08001778 */
Paul Jackson74cb2152006-01-08 01:01:56 -08001779
1780void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new)
Paul Jackson68860ec2005-10-30 15:02:36 -08001781{
Paul Jackson74cb2152006-01-08 01:01:56 -08001782 mpol_rebind_policy(tsk->mempolicy, new);
Paul Jackson68860ec2005-10-30 15:02:36 -08001783}
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001784
1785/*
Paul Jackson42253992006-01-08 01:01:59 -08001786 * Rebind each vma in mm to new nodemask.
1787 *
1788 * Call holding a reference to mm. Takes mm->mmap_sem during call.
1789 */
1790
1791void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
1792{
1793 struct vm_area_struct *vma;
1794
1795 down_write(&mm->mmap_sem);
1796 for (vma = mm->mmap; vma; vma = vma->vm_next)
1797 mpol_rebind_policy(vma->vm_policy, new);
1798 up_write(&mm->mmap_sem);
1799}
1800
1801/*
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001802 * Display pages allocated per node and memory policy via /proc.
1803 */
1804
Helge Deller15ad7cd2006-12-06 20:40:36 -08001805static const char * const policy_types[] =
1806 { "default", "prefer", "bind", "interleave" };
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001807
1808/*
1809 * Convert a mempolicy into a string.
1810 * Returns the number of characters in buffer (if positive)
1811 * or an error (negative)
1812 */
1813static inline int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol)
1814{
1815 char *p = buffer;
1816 int l;
1817 nodemask_t nodes;
1818 int mode = pol ? pol->policy : MPOL_DEFAULT;
1819
1820 switch (mode) {
1821 case MPOL_DEFAULT:
1822 nodes_clear(nodes);
1823 break;
1824
1825 case MPOL_PREFERRED:
1826 nodes_clear(nodes);
1827 node_set(pol->v.preferred_node, nodes);
1828 break;
1829
1830 case MPOL_BIND:
1831 get_zonemask(pol, &nodes);
1832 break;
1833
1834 case MPOL_INTERLEAVE:
1835 nodes = pol->v.nodes;
1836 break;
1837
1838 default:
1839 BUG();
1840 return -EFAULT;
1841 }
1842
1843 l = strlen(policy_types[mode]);
1844 if (buffer + maxlen < p + l + 1)
1845 return -ENOSPC;
1846
1847 strcpy(p, policy_types[mode]);
1848 p += l;
1849
1850 if (!nodes_empty(nodes)) {
1851 if (buffer + maxlen < p + 2)
1852 return -ENOSPC;
1853 *p++ = '=';
1854 p += nodelist_scnprintf(p, buffer + maxlen - p, nodes);
1855 }
1856 return p - buffer;
1857}
1858
1859struct numa_maps {
1860 unsigned long pages;
1861 unsigned long anon;
Christoph Lameter397874d2006-03-06 15:42:53 -08001862 unsigned long active;
1863 unsigned long writeback;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001864 unsigned long mapcount_max;
Christoph Lameter397874d2006-03-06 15:42:53 -08001865 unsigned long dirty;
1866 unsigned long swapcache;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001867 unsigned long node[MAX_NUMNODES];
1868};
1869
Christoph Lameter397874d2006-03-06 15:42:53 -08001870static void gather_stats(struct page *page, void *private, int pte_dirty)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001871{
1872 struct numa_maps *md = private;
1873 int count = page_mapcount(page);
1874
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001875 md->pages++;
Christoph Lameter397874d2006-03-06 15:42:53 -08001876 if (pte_dirty || PageDirty(page))
1877 md->dirty++;
1878
1879 if (PageSwapCache(page))
1880 md->swapcache++;
1881
1882 if (PageActive(page))
1883 md->active++;
1884
1885 if (PageWriteback(page))
1886 md->writeback++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001887
1888 if (PageAnon(page))
1889 md->anon++;
1890
Christoph Lameter397874d2006-03-06 15:42:53 -08001891 if (count > md->mapcount_max)
1892 md->mapcount_max = count;
1893
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001894 md->node[page_to_nid(page)]++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001895}
1896
Andrew Morton7f709ed2006-03-07 21:55:22 -08001897#ifdef CONFIG_HUGETLB_PAGE
Christoph Lameter397874d2006-03-06 15:42:53 -08001898static void check_huge_range(struct vm_area_struct *vma,
1899 unsigned long start, unsigned long end,
1900 struct numa_maps *md)
1901{
1902 unsigned long addr;
1903 struct page *page;
1904
1905 for (addr = start; addr < end; addr += HPAGE_SIZE) {
1906 pte_t *ptep = huge_pte_offset(vma->vm_mm, addr & HPAGE_MASK);
1907 pte_t pte;
1908
1909 if (!ptep)
1910 continue;
1911
1912 pte = *ptep;
1913 if (pte_none(pte))
1914 continue;
1915
1916 page = pte_page(pte);
1917 if (!page)
1918 continue;
1919
1920 gather_stats(page, md, pte_dirty(*ptep));
1921 }
1922}
Andrew Morton7f709ed2006-03-07 21:55:22 -08001923#else
1924static inline void check_huge_range(struct vm_area_struct *vma,
1925 unsigned long start, unsigned long end,
1926 struct numa_maps *md)
1927{
1928}
1929#endif
Christoph Lameter397874d2006-03-06 15:42:53 -08001930
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001931int show_numa_map(struct seq_file *m, void *v)
1932{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001933 struct proc_maps_private *priv = m->private;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001934 struct vm_area_struct *vma = v;
1935 struct numa_maps *md;
Christoph Lameter397874d2006-03-06 15:42:53 -08001936 struct file *file = vma->vm_file;
1937 struct mm_struct *mm = vma->vm_mm;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001938 struct mempolicy *pol;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001939 int n;
1940 char buffer[50];
1941
Christoph Lameter397874d2006-03-06 15:42:53 -08001942 if (!mm)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001943 return 0;
1944
1945 md = kzalloc(sizeof(struct numa_maps), GFP_KERNEL);
1946 if (!md)
1947 return 0;
1948
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001949 pol = get_vma_policy(priv->task, vma, vma->vm_start);
1950 mpol_to_str(buffer, sizeof(buffer), pol);
1951 /*
1952 * unref shared or other task's mempolicy
1953 */
1954 if (pol != &default_policy && pol != current->mempolicy)
1955 __mpol_free(pol);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001956
Christoph Lameter397874d2006-03-06 15:42:53 -08001957 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001958
Christoph Lameter397874d2006-03-06 15:42:53 -08001959 if (file) {
1960 seq_printf(m, " file=");
Josef Sipeke9536ae2006-12-08 02:37:21 -08001961 seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n\t= ");
Christoph Lameter397874d2006-03-06 15:42:53 -08001962 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
1963 seq_printf(m, " heap");
1964 } else if (vma->vm_start <= mm->start_stack &&
1965 vma->vm_end >= mm->start_stack) {
1966 seq_printf(m, " stack");
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001967 }
Christoph Lameter397874d2006-03-06 15:42:53 -08001968
1969 if (is_vm_hugetlb_page(vma)) {
1970 check_huge_range(vma, vma->vm_start, vma->vm_end, md);
1971 seq_printf(m, " huge");
1972 } else {
1973 check_pgd_range(vma, vma->vm_start, vma->vm_end,
1974 &node_online_map, MPOL_MF_STATS, md);
1975 }
1976
1977 if (!md->pages)
1978 goto out;
1979
1980 if (md->anon)
1981 seq_printf(m," anon=%lu",md->anon);
1982
1983 if (md->dirty)
1984 seq_printf(m," dirty=%lu",md->dirty);
1985
1986 if (md->pages != md->anon && md->pages != md->dirty)
1987 seq_printf(m, " mapped=%lu", md->pages);
1988
1989 if (md->mapcount_max > 1)
1990 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1991
1992 if (md->swapcache)
1993 seq_printf(m," swapcache=%lu", md->swapcache);
1994
1995 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1996 seq_printf(m," active=%lu", md->active);
1997
1998 if (md->writeback)
1999 seq_printf(m," writeback=%lu", md->writeback);
2000
2001 for_each_online_node(n)
2002 if (md->node[n])
2003 seq_printf(m, " N%d=%lu", n, md->node[n]);
2004out:
2005 seq_putc(m, '\n');
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002006 kfree(md);
2007
2008 if (m->count < m->size)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002009 m->version = (vma != priv->tail_vma) ? vma->vm_start : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002010 return 0;
2011}
2012