blob: 3a45b7dd0a09911145d2a981535a95987ab4f2d7 [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 Jacksoncf2a473c2006-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 Jacksoncf2a473c2006-01-08 01:01:54 -0800528 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (flags & ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR))
530 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (flags & MPOL_F_ADDR) {
532 down_read(&mm->mmap_sem);
533 vma = find_vma_intersection(mm, addr, addr+1);
534 if (!vma) {
535 up_read(&mm->mmap_sem);
536 return -EFAULT;
537 }
538 if (vma->vm_ops && vma->vm_ops->get_policy)
539 pol = vma->vm_ops->get_policy(vma, addr);
540 else
541 pol = vma->vm_policy;
542 } else if (addr)
543 return -EINVAL;
544
545 if (!pol)
546 pol = &default_policy;
547
548 if (flags & MPOL_F_NODE) {
549 if (flags & MPOL_F_ADDR) {
550 err = lookup_node(mm, addr);
551 if (err < 0)
552 goto out;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700553 *policy = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else if (pol == current->mempolicy &&
555 pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter8bccd852005-10-29 18:16:59 -0700556 *policy = current->il_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 } else {
558 err = -EINVAL;
559 goto out;
560 }
561 } else
Christoph Lameter8bccd852005-10-29 18:16:59 -0700562 *policy = pol->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (vma) {
565 up_read(&current->mm->mmap_sem);
566 vma = NULL;
567 }
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 err = 0;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700570 if (nmask)
571 get_zonemask(pol, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 out:
574 if (vma)
575 up_read(&current->mm->mmap_sem);
576 return err;
577}
578
Christoph Lameterb20a3502006-03-22 00:09:12 -0800579#ifdef CONFIG_MIGRATION
Christoph Lameter8bccd852005-10-29 18:16:59 -0700580/*
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800581 * page migration
582 */
Christoph Lameterfc301282006-01-18 17:42:29 -0800583static void migrate_page_add(struct page *page, struct list_head *pagelist,
584 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800585{
586 /*
Christoph Lameterfc301282006-01-18 17:42:29 -0800587 * Avoid migrating a page that is shared with others.
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800588 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800589 if ((flags & MPOL_MF_MOVE_ALL) || page_mapcount(page) == 1)
590 isolate_lru_page(page, pagelist);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800591}
592
Christoph Lameter742755a2006-06-23 02:03:55 -0700593static struct page *new_node_page(struct page *page, unsigned long node, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700594{
Mel Gorman769848c2007-07-17 04:03:05 -0700595 return alloc_pages_node(node, GFP_HIGHUSER_MOVABLE, 0);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700596}
597
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800598/*
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800599 * Migrate pages from one node to a target node.
600 * Returns error or the number of pages not migrated.
601 */
602int migrate_to_node(struct mm_struct *mm, int source, int dest, int flags)
603{
604 nodemask_t nmask;
605 LIST_HEAD(pagelist);
606 int err = 0;
607
608 nodes_clear(nmask);
609 node_set(source, nmask);
610
611 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nmask,
612 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
613
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700614 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700615 err = migrate_pages(&pagelist, new_node_page, dest);
616
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800617 return err;
618}
619
620/*
621 * Move pages between the two nodesets so as to preserve the physical
622 * layout as much as possible.
Christoph Lameter39743882006-01-08 01:00:51 -0800623 *
624 * Returns the number of page that could not be moved.
625 */
626int do_migrate_pages(struct mm_struct *mm,
627 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
628{
629 LIST_HEAD(pagelist);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800630 int busy = 0;
631 int err = 0;
632 nodemask_t tmp;
Christoph Lameter39743882006-01-08 01:00:51 -0800633
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800634 down_read(&mm->mmap_sem);
Christoph Lameter39743882006-01-08 01:00:51 -0800635
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700636 err = migrate_vmas(mm, from_nodes, to_nodes, flags);
637 if (err)
638 goto out;
639
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800640/*
641 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
642 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
643 * bit in 'tmp', and return that <source, dest> pair for migration.
644 * The pair of nodemasks 'to' and 'from' define the map.
645 *
646 * If no pair of bits is found that way, fallback to picking some
647 * pair of 'source' and 'dest' bits that are not the same. If the
648 * 'source' and 'dest' bits are the same, this represents a node
649 * that will be migrating to itself, so no pages need move.
650 *
651 * If no bits are left in 'tmp', or if all remaining bits left
652 * in 'tmp' correspond to the same bit in 'to', return false
653 * (nothing left to migrate).
654 *
655 * This lets us pick a pair of nodes to migrate between, such that
656 * if possible the dest node is not already occupied by some other
657 * source node, minimizing the risk of overloading the memory on a
658 * node that would happen if we migrated incoming memory to a node
659 * before migrating outgoing memory source that same node.
660 *
661 * A single scan of tmp is sufficient. As we go, we remember the
662 * most recent <s, d> pair that moved (s != d). If we find a pair
663 * that not only moved, but what's better, moved to an empty slot
664 * (d is not set in tmp), then we break out then, with that pair.
665 * Otherwise when we finish scannng from_tmp, we at least have the
666 * most recent <s, d> pair that moved. If we get all the way through
667 * the scan of tmp without finding any node that moved, much less
668 * moved to an empty node, then there is nothing left worth migrating.
669 */
Christoph Lameterd4984712006-01-08 01:00:55 -0800670
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800671 tmp = *from_nodes;
672 while (!nodes_empty(tmp)) {
673 int s,d;
674 int source = -1;
675 int dest = 0;
676
677 for_each_node_mask(s, tmp) {
678 d = node_remap(s, *from_nodes, *to_nodes);
679 if (s == d)
680 continue;
681
682 source = s; /* Node moved. Memorize */
683 dest = d;
684
685 /* dest not in remaining from nodes? */
686 if (!node_isset(dest, tmp))
687 break;
688 }
689 if (source == -1)
690 break;
691
692 node_clear(source, tmp);
693 err = migrate_to_node(mm, source, dest, flags);
694 if (err > 0)
695 busy += err;
696 if (err < 0)
697 break;
Christoph Lameter39743882006-01-08 01:00:51 -0800698 }
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700699out:
Christoph Lameter39743882006-01-08 01:00:51 -0800700 up_read(&mm->mmap_sem);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800701 if (err < 0)
702 return err;
703 return busy;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800704
Christoph Lameter39743882006-01-08 01:00:51 -0800705}
706
Christoph Lameter742755a2006-06-23 02:03:55 -0700707static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700708{
709 struct vm_area_struct *vma = (struct vm_area_struct *)private;
710
Mel Gorman769848c2007-07-17 04:03:05 -0700711 return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma,
712 page_address_in_vma(page, vma));
Christoph Lameter95a402c2006-06-23 02:03:53 -0700713}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800714#else
715
716static void migrate_page_add(struct page *page, struct list_head *pagelist,
717 unsigned long flags)
718{
719}
720
721int do_migrate_pages(struct mm_struct *mm,
722 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
723{
724 return -ENOSYS;
725}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700726
Keith Owens69939742006-10-11 01:21:28 -0700727static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700728{
729 return NULL;
730}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800731#endif
732
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800733long do_mbind(unsigned long start, unsigned long len,
734 unsigned long mode, nodemask_t *nmask, unsigned long flags)
735{
736 struct vm_area_struct *vma;
737 struct mm_struct *mm = current->mm;
738 struct mempolicy *new;
739 unsigned long end;
740 int err;
741 LIST_HEAD(pagelist);
742
743 if ((flags & ~(unsigned long)(MPOL_MF_STRICT |
744 MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
745 || mode > MPOL_MAX)
746 return -EINVAL;
Christoph Lameter74c00242006-03-14 19:50:21 -0800747 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800748 return -EPERM;
749
750 if (start & ~PAGE_MASK)
751 return -EINVAL;
752
753 if (mode == MPOL_DEFAULT)
754 flags &= ~MPOL_MF_STRICT;
755
756 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
757 end = start + len;
758
759 if (end < start)
760 return -EINVAL;
761 if (end == start)
762 return 0;
763
764 if (mpol_check_policy(mode, nmask))
765 return -EINVAL;
766
767 new = mpol_new(mode, nmask);
768 if (IS_ERR(new))
769 return PTR_ERR(new);
770
771 /*
772 * If we are using the default policy then operation
773 * on discontinuous address spaces is okay after all
774 */
775 if (!new)
776 flags |= MPOL_MF_DISCONTIG_OK;
777
Paul Mundt140d5a42007-07-15 23:38:16 -0700778 pr_debug("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
779 mode, nmask ? nodes_addr(*nmask)[0] : -1);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800780
781 down_write(&mm->mmap_sem);
782 vma = check_range(mm, start, end, nmask,
783 flags | MPOL_MF_INVERT, &pagelist);
784
785 err = PTR_ERR(vma);
786 if (!IS_ERR(vma)) {
787 int nr_failed = 0;
788
789 err = mbind_range(vma, start, end, new);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800790
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800791 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700792 nr_failed = migrate_pages(&pagelist, new_vma_page,
793 (unsigned long)vma);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800794
795 if (!err && nr_failed && (flags & MPOL_MF_STRICT))
796 err = -EIO;
797 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800798
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800799 up_write(&mm->mmap_sem);
800 mpol_free(new);
801 return err;
802}
803
Christoph Lameter39743882006-01-08 01:00:51 -0800804/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700805 * User space interface with variable sized bitmaps for nodelists.
806 */
807
808/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800809static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700810 unsigned long maxnode)
811{
812 unsigned long k;
813 unsigned long nlongs;
814 unsigned long endmask;
815
816 --maxnode;
817 nodes_clear(*nodes);
818 if (maxnode == 0 || !nmask)
819 return 0;
Andi Kleena9c930b2006-02-20 18:27:59 -0800820 if (maxnode > PAGE_SIZE*BITS_PER_BYTE)
Chris Wright636f13c2006-02-17 13:59:36 -0800821 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700822
823 nlongs = BITS_TO_LONGS(maxnode);
824 if ((maxnode % BITS_PER_LONG) == 0)
825 endmask = ~0UL;
826 else
827 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
828
829 /* When the user specified more nodes than supported just check
830 if the non supported part is all zero. */
831 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
832 if (nlongs > PAGE_SIZE/sizeof(long))
833 return -EINVAL;
834 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
835 unsigned long t;
836 if (get_user(t, nmask + k))
837 return -EFAULT;
838 if (k == nlongs - 1) {
839 if (t & endmask)
840 return -EINVAL;
841 } else if (t)
842 return -EINVAL;
843 }
844 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
845 endmask = ~0UL;
846 }
847
848 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
849 return -EFAULT;
850 nodes_addr(*nodes)[nlongs-1] &= endmask;
851 return 0;
852}
853
854/* Copy a kernel node mask to user space */
855static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
856 nodemask_t *nodes)
857{
858 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
859 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
860
861 if (copy > nbytes) {
862 if (copy > PAGE_SIZE)
863 return -EINVAL;
864 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
865 return -EFAULT;
866 copy = nbytes;
867 }
868 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
869}
870
871asmlinkage long sys_mbind(unsigned long start, unsigned long len,
872 unsigned long mode,
873 unsigned long __user *nmask, unsigned long maxnode,
874 unsigned flags)
875{
876 nodemask_t nodes;
877 int err;
878
879 err = get_nodes(&nodes, nmask, maxnode);
880 if (err)
881 return err;
Christoph Lameter30150f82007-01-22 20:40:45 -0800882#ifdef CONFIG_CPUSETS
883 /* Restrict the nodes to the allowed nodes in the cpuset */
884 nodes_and(nodes, nodes, current->mems_allowed);
885#endif
Christoph Lameter8bccd852005-10-29 18:16:59 -0700886 return do_mbind(start, len, mode, &nodes, flags);
887}
888
889/* Set the process memory policy */
890asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
891 unsigned long maxnode)
892{
893 int err;
894 nodemask_t nodes;
895
896 if (mode < 0 || mode > MPOL_MAX)
897 return -EINVAL;
898 err = get_nodes(&nodes, nmask, maxnode);
899 if (err)
900 return err;
901 return do_set_mempolicy(mode, &nodes);
902}
903
Christoph Lameter39743882006-01-08 01:00:51 -0800904asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
905 const unsigned long __user *old_nodes,
906 const unsigned long __user *new_nodes)
907{
908 struct mm_struct *mm;
909 struct task_struct *task;
910 nodemask_t old;
911 nodemask_t new;
912 nodemask_t task_nodes;
913 int err;
914
915 err = get_nodes(&old, old_nodes, maxnode);
916 if (err)
917 return err;
918
919 err = get_nodes(&new, new_nodes, maxnode);
920 if (err)
921 return err;
922
923 /* Find the mm_struct */
924 read_lock(&tasklist_lock);
925 task = pid ? find_task_by_pid(pid) : current;
926 if (!task) {
927 read_unlock(&tasklist_lock);
928 return -ESRCH;
929 }
930 mm = get_task_mm(task);
931 read_unlock(&tasklist_lock);
932
933 if (!mm)
934 return -EINVAL;
935
936 /*
937 * Check if this process has the right to modify the specified
938 * process. The right exists if the process has administrative
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800939 * capabilities, superuser privileges or the same
Christoph Lameter39743882006-01-08 01:00:51 -0800940 * userid as the target process.
941 */
942 if ((current->euid != task->suid) && (current->euid != task->uid) &&
943 (current->uid != task->suid) && (current->uid != task->uid) &&
Christoph Lameter74c00242006-03-14 19:50:21 -0800944 !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800945 err = -EPERM;
946 goto out;
947 }
948
949 task_nodes = cpuset_mems_allowed(task);
950 /* Is the user allowed to access the target nodes? */
Christoph Lameter74c00242006-03-14 19:50:21 -0800951 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800952 err = -EPERM;
953 goto out;
954 }
955
Christoph Lameter3b42d282007-08-31 00:12:08 -0700956 if (!nodes_subset(new, node_online_map)) {
957 err = -EINVAL;
958 goto out;
959 }
960
David Quigley86c3a762006-06-23 02:04:02 -0700961 err = security_task_movememory(task);
962 if (err)
963 goto out;
964
Christoph Lameter511030b2006-02-28 16:58:57 -0800965 err = do_migrate_pages(mm, &old, &new,
Christoph Lameter74c00242006-03-14 19:50:21 -0800966 capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
Christoph Lameter39743882006-01-08 01:00:51 -0800967out:
968 mmput(mm);
969 return err;
970}
971
972
Christoph Lameter8bccd852005-10-29 18:16:59 -0700973/* Retrieve NUMA policy */
974asmlinkage long sys_get_mempolicy(int __user *policy,
975 unsigned long __user *nmask,
976 unsigned long maxnode,
977 unsigned long addr, unsigned long flags)
978{
979 int err, pval;
980 nodemask_t nodes;
981
982 if (nmask != NULL && maxnode < MAX_NUMNODES)
983 return -EINVAL;
984
985 err = do_get_mempolicy(&pval, &nodes, addr, flags);
986
987 if (err)
988 return err;
989
990 if (policy && put_user(pval, policy))
991 return -EFAULT;
992
993 if (nmask)
994 err = copy_nodes_to_user(nmask, maxnode, &nodes);
995
996 return err;
997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999#ifdef CONFIG_COMPAT
1000
1001asmlinkage long compat_sys_get_mempolicy(int __user *policy,
1002 compat_ulong_t __user *nmask,
1003 compat_ulong_t maxnode,
1004 compat_ulong_t addr, compat_ulong_t flags)
1005{
1006 long err;
1007 unsigned long __user *nm = NULL;
1008 unsigned long nr_bits, alloc_size;
1009 DECLARE_BITMAP(bm, MAX_NUMNODES);
1010
1011 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1012 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1013
1014 if (nmask)
1015 nm = compat_alloc_user_space(alloc_size);
1016
1017 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
1018
1019 if (!err && nmask) {
1020 err = copy_from_user(bm, nm, alloc_size);
1021 /* ensure entire bitmap is zeroed */
1022 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
1023 err |= compat_put_bitmap(nmask, bm, nr_bits);
1024 }
1025
1026 return err;
1027}
1028
1029asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
1030 compat_ulong_t maxnode)
1031{
1032 long err = 0;
1033 unsigned long __user *nm = NULL;
1034 unsigned long nr_bits, alloc_size;
1035 DECLARE_BITMAP(bm, MAX_NUMNODES);
1036
1037 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1038 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1039
1040 if (nmask) {
1041 err = compat_get_bitmap(bm, nmask, nr_bits);
1042 nm = compat_alloc_user_space(alloc_size);
1043 err |= copy_to_user(nm, bm, alloc_size);
1044 }
1045
1046 if (err)
1047 return -EFAULT;
1048
1049 return sys_set_mempolicy(mode, nm, nr_bits+1);
1050}
1051
1052asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
1053 compat_ulong_t mode, compat_ulong_t __user *nmask,
1054 compat_ulong_t maxnode, compat_ulong_t flags)
1055{
1056 long err = 0;
1057 unsigned long __user *nm = NULL;
1058 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001059 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1062 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1063
1064 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001065 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -07001067 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069
1070 if (err)
1071 return -EFAULT;
1072
1073 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
1074}
1075
1076#endif
1077
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001078/*
1079 * get_vma_policy(@task, @vma, @addr)
1080 * @task - task for fallback if vma policy == default
1081 * @vma - virtual memory area whose policy is sought
1082 * @addr - address in @vma for shared policy lookup
1083 *
1084 * Returns effective policy for a VMA at specified address.
1085 * Falls back to @task or system default policy, as necessary.
1086 * Returned policy has extra reference count if shared, vma,
1087 * or some other task's policy [show_numa_maps() can pass
1088 * @task != current]. It is the caller's responsibility to
1089 * free the reference in these cases.
1090 */
Christoph Lameter48fce342006-01-08 01:01:03 -08001091static struct mempolicy * get_vma_policy(struct task_struct *task,
1092 struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001094 struct mempolicy *pol = task->mempolicy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001095 int shared_pol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if (vma) {
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001098 if (vma->vm_ops && vma->vm_ops->get_policy) {
Christoph Lameter8bccd852005-10-29 18:16:59 -07001099 pol = vma->vm_ops->get_policy(vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001100 shared_pol = 1; /* if pol non-NULL, add ref below */
1101 } else if (vma->vm_policy &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 vma->vm_policy->policy != MPOL_DEFAULT)
1103 pol = vma->vm_policy;
1104 }
1105 if (!pol)
1106 pol = &default_policy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001107 else if (!shared_pol && pol != current->mempolicy)
1108 mpol_get(pol); /* vma or other task's policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return pol;
1110}
1111
1112/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +01001113static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 int nd;
1116
1117 switch (policy->policy) {
1118 case MPOL_PREFERRED:
1119 nd = policy->v.preferred_node;
1120 if (nd < 0)
1121 nd = numa_node_id();
1122 break;
1123 case MPOL_BIND:
1124 /* Lower zones don't get a policy applied */
1125 /* Careful: current->mems_allowed might have moved */
Christoph Lameter19655d32006-09-25 23:31:19 -07001126 if (gfp_zone(gfp) >= policy_zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
1128 return policy->v.zonelist;
1129 /*FALL THROUGH*/
1130 case MPOL_INTERLEAVE: /* should not happen */
1131 case MPOL_DEFAULT:
1132 nd = numa_node_id();
1133 break;
1134 default:
1135 nd = 0;
1136 BUG();
1137 }
Al Viroaf4ca452005-10-21 02:55:38 -04001138 return NODE_DATA(nd)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141/* Do dynamic interleaving for a process */
1142static unsigned interleave_nodes(struct mempolicy *policy)
1143{
1144 unsigned nid, next;
1145 struct task_struct *me = current;
1146
1147 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001148 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -07001150 next = first_node(policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 me->il_next = next;
1152 return nid;
1153}
1154
Christoph Lameterdc85da12006-01-18 17:42:36 -08001155/*
1156 * Depending on the memory policy provide a node from which to allocate the
1157 * next slab entry.
1158 */
1159unsigned slab_node(struct mempolicy *policy)
1160{
Christoph Lameter765c4502006-09-27 01:50:08 -07001161 int pol = policy ? policy->policy : MPOL_DEFAULT;
1162
1163 switch (pol) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001164 case MPOL_INTERLEAVE:
1165 return interleave_nodes(policy);
1166
1167 case MPOL_BIND:
1168 /*
1169 * Follow bind policy behavior and start allocation at the
1170 * first node.
1171 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07001172 return zone_to_nid(policy->v.zonelist->zones[0]);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001173
1174 case MPOL_PREFERRED:
1175 if (policy->v.preferred_node >= 0)
1176 return policy->v.preferred_node;
1177 /* Fall through */
1178
1179 default:
1180 return numa_node_id();
1181 }
1182}
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184/* Do static interleaving for a VMA with known offset. */
1185static unsigned offset_il_node(struct mempolicy *pol,
1186 struct vm_area_struct *vma, unsigned long off)
1187{
Andi Kleendfcd3c02005-10-29 18:15:48 -07001188 unsigned nnodes = nodes_weight(pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 unsigned target = (unsigned)off % nnodes;
1190 int c;
1191 int nid = -1;
1192
1193 c = 0;
1194 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001195 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 c++;
1197 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return nid;
1199}
1200
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001201/* Determine a node number for interleave */
1202static inline unsigned interleave_nid(struct mempolicy *pol,
1203 struct vm_area_struct *vma, unsigned long addr, int shift)
1204{
1205 if (vma) {
1206 unsigned long off;
1207
Nishanth Aravamudan3b98b082006-08-31 21:27:53 -07001208 /*
1209 * for small pages, there is no difference between
1210 * shift and PAGE_SHIFT, so the bit-shift is safe.
1211 * for huge pages, since vm_pgoff is in units of small
1212 * pages, we need to shift off the always 0 bits to get
1213 * a useful offset.
1214 */
1215 BUG_ON(shift < PAGE_SHIFT);
1216 off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001217 off += (addr - vma->vm_start) >> shift;
1218 return offset_il_node(pol, vma, off);
1219 } else
1220 return interleave_nodes(pol);
1221}
1222
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001223#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001224/*
1225 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1226 * @vma = virtual memory area whose policy is sought
1227 * @addr = address in @vma for shared policy lookup and interleave policy
1228 * @gfp_flags = for requested zone
1229 * @mpol = pointer to mempolicy pointer for reference counted 'BIND policy
1230 *
1231 * Returns a zonelist suitable for a huge page allocation.
1232 * If the effective policy is 'BIND, returns pointer to policy's zonelist.
1233 * If it is also a policy for which get_vma_policy() returns an extra
1234 * reference, we must hold that reference until after allocation.
1235 * In that case, return policy via @mpol so hugetlb allocation can drop
1236 * the reference. For non-'BIND referenced policies, we can/do drop the
1237 * reference here, so the caller doesn't need to know about the special case
1238 * for default and current task policy.
1239 */
Mel Gorman396faf02007-07-17 04:03:13 -07001240struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001241 gfp_t gfp_flags, struct mempolicy **mpol)
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001242{
1243 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001244 struct zonelist *zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001245
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001246 *mpol = NULL; /* probably no unref needed */
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001247 if (pol->policy == MPOL_INTERLEAVE) {
1248 unsigned nid;
1249
1250 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001251 __mpol_free(pol); /* finished with pol */
Mel Gorman396faf02007-07-17 04:03:13 -07001252 return NODE_DATA(nid)->node_zonelists + gfp_zone(gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001253 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001254
1255 zl = zonelist_policy(GFP_HIGHUSER, pol);
1256 if (unlikely(pol != &default_policy && pol != current->mempolicy)) {
1257 if (pol->policy != MPOL_BIND)
1258 __mpol_free(pol); /* finished with pol */
1259 else
1260 *mpol = pol; /* unref needed after allocation */
1261 }
1262 return zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001263}
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001264#endif
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266/* Allocate a page in interleaved policy.
1267 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001268static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1269 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 struct zonelist *zl;
1272 struct page *page;
1273
Al Viroaf4ca452005-10-21 02:55:38 -04001274 zl = NODE_DATA(nid)->node_zonelists + gfp_zone(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 page = __alloc_pages(gfp, order, zl);
Christoph Lameterca889e62006-06-30 01:55:44 -07001276 if (page && page_zone(page) == zl->zones[0])
1277 inc_zone_page_state(page, NUMA_INTERLEAVE_HIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return page;
1279}
1280
1281/**
1282 * alloc_page_vma - Allocate a page for a VMA.
1283 *
1284 * @gfp:
1285 * %GFP_USER user allocation.
1286 * %GFP_KERNEL kernel allocations,
1287 * %GFP_HIGHMEM highmem/user allocations,
1288 * %GFP_FS allocation should not call back into a file system.
1289 * %GFP_ATOMIC don't sleep.
1290 *
1291 * @vma: Pointer to VMA or NULL if not available.
1292 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1293 *
1294 * This function allocates a page from the kernel page pool and applies
1295 * a NUMA policy associated with the VMA or the current process.
1296 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1297 * mm_struct of the VMA to prevent it from going away. Should be used for
1298 * all allocations for pages that will be mapped into
1299 * user space. Returns NULL when no page can be allocated.
1300 *
1301 * Should be called with the mm_sem of the vma hold.
1302 */
1303struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001304alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001306 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001307 struct zonelist *zl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Paul Jacksoncf2a473c2006-01-08 01:01:54 -08001309 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1312 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001313
1314 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return alloc_page_interleave(gfp, 0, nid);
1316 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001317 zl = zonelist_policy(gfp, pol);
1318 if (pol != &default_policy && pol != current->mempolicy) {
1319 /*
1320 * slow path: ref counted policy -- shared or vma
1321 */
1322 struct page *page = __alloc_pages(gfp, 0, zl);
1323 __mpol_free(pol);
1324 return page;
1325 }
1326 /*
1327 * fast path: default or task policy
1328 */
1329 return __alloc_pages(gfp, 0, zl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
1332/**
1333 * alloc_pages_current - Allocate pages.
1334 *
1335 * @gfp:
1336 * %GFP_USER user allocation,
1337 * %GFP_KERNEL kernel allocation,
1338 * %GFP_HIGHMEM highmem allocation,
1339 * %GFP_FS don't call back into a file system.
1340 * %GFP_ATOMIC don't sleep.
1341 * @order: Power of two of allocation size in pages. 0 is a single page.
1342 *
1343 * Allocate a page from the kernel page pool. When not in
1344 * interrupt context and apply the current process NUMA policy.
1345 * Returns NULL when no page can be allocated.
1346 *
Paul Jacksoncf2a473c2006-01-08 01:01:54 -08001347 * Don't call cpuset_update_task_memory_state() unless
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 * 1) it's ok to take cpuset_sem (can WAIT), and
1349 * 2) allocating for current task (not interrupt).
1350 */
Al Virodd0fc662005-10-07 07:46:04 +01001351struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct mempolicy *pol = current->mempolicy;
1354
1355 if ((gfp & __GFP_WAIT) && !in_interrupt())
Paul Jacksoncf2a473c2006-01-08 01:01:54 -08001356 cpuset_update_task_memory_state();
Christoph Lameter9b819d22006-09-25 23:31:40 -07001357 if (!pol || in_interrupt() || (gfp & __GFP_THISNODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 pol = &default_policy;
1359 if (pol->policy == MPOL_INTERLEAVE)
1360 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
1361 return __alloc_pages(gfp, order, zonelist_policy(gfp, pol));
1362}
1363EXPORT_SYMBOL(alloc_pages_current);
1364
Paul Jackson42253992006-01-08 01:01:59 -08001365/*
1366 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1367 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1368 * with the mems_allowed returned by cpuset_mems_allowed(). This
1369 * keeps mempolicies cpuset relative after its cpuset moves. See
1370 * further kernel/cpuset.c update_nodemask().
1371 */
1372void *cpuset_being_rebound;
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374/* Slow path of a mempolicy copy */
1375struct mempolicy *__mpol_copy(struct mempolicy *old)
1376{
1377 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1378
1379 if (!new)
1380 return ERR_PTR(-ENOMEM);
Paul Jackson42253992006-01-08 01:01:59 -08001381 if (current_cpuset_is_being_rebound()) {
1382 nodemask_t mems = cpuset_mems_allowed(current);
1383 mpol_rebind_policy(old, &mems);
1384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 *new = *old;
1386 atomic_set(&new->refcnt, 1);
1387 if (new->policy == MPOL_BIND) {
1388 int sz = ksize(old->v.zonelist);
Christoph Lametere94b1762006-12-06 20:33:17 -08001389 new->v.zonelist = kmemdup(old->v.zonelist, sz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (!new->v.zonelist) {
1391 kmem_cache_free(policy_cache, new);
1392 return ERR_PTR(-ENOMEM);
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 return new;
1396}
1397
1398/* Slow path of a mempolicy comparison */
1399int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1400{
1401 if (!a || !b)
1402 return 0;
1403 if (a->policy != b->policy)
1404 return 0;
1405 switch (a->policy) {
1406 case MPOL_DEFAULT:
1407 return 1;
1408 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001409 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 case MPOL_PREFERRED:
1411 return a->v.preferred_node == b->v.preferred_node;
1412 case MPOL_BIND: {
1413 int i;
1414 for (i = 0; a->v.zonelist->zones[i]; i++)
1415 if (a->v.zonelist->zones[i] != b->v.zonelist->zones[i])
1416 return 0;
1417 return b->v.zonelist->zones[i] == NULL;
1418 }
1419 default:
1420 BUG();
1421 return 0;
1422 }
1423}
1424
1425/* Slow path of a mpol destructor. */
1426void __mpol_free(struct mempolicy *p)
1427{
1428 if (!atomic_dec_and_test(&p->refcnt))
1429 return;
1430 if (p->policy == MPOL_BIND)
1431 kfree(p->v.zonelist);
1432 p->policy = MPOL_DEFAULT;
1433 kmem_cache_free(policy_cache, p);
1434}
1435
1436/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * Shared memory backing store policy support.
1438 *
1439 * Remember policies even when nobody has shared memory mapped.
1440 * The policies are kept in Red-Black tree linked from the inode.
1441 * They are protected by the sp->lock spinlock, which should be held
1442 * for any accesses to the tree.
1443 */
1444
1445/* lookup first element intersecting start-end */
1446/* Caller holds sp->lock */
1447static struct sp_node *
1448sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1449{
1450 struct rb_node *n = sp->root.rb_node;
1451
1452 while (n) {
1453 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1454
1455 if (start >= p->end)
1456 n = n->rb_right;
1457 else if (end <= p->start)
1458 n = n->rb_left;
1459 else
1460 break;
1461 }
1462 if (!n)
1463 return NULL;
1464 for (;;) {
1465 struct sp_node *w = NULL;
1466 struct rb_node *prev = rb_prev(n);
1467 if (!prev)
1468 break;
1469 w = rb_entry(prev, struct sp_node, nd);
1470 if (w->end <= start)
1471 break;
1472 n = prev;
1473 }
1474 return rb_entry(n, struct sp_node, nd);
1475}
1476
1477/* Insert a new shared policy into the list. */
1478/* Caller holds sp->lock */
1479static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1480{
1481 struct rb_node **p = &sp->root.rb_node;
1482 struct rb_node *parent = NULL;
1483 struct sp_node *nd;
1484
1485 while (*p) {
1486 parent = *p;
1487 nd = rb_entry(parent, struct sp_node, nd);
1488 if (new->start < nd->start)
1489 p = &(*p)->rb_left;
1490 else if (new->end > nd->end)
1491 p = &(*p)->rb_right;
1492 else
1493 BUG();
1494 }
1495 rb_link_node(&new->nd, parent, p);
1496 rb_insert_color(&new->nd, &sp->root);
Paul Mundt140d5a42007-07-15 23:38:16 -07001497 pr_debug("inserting %lx-%lx: %d\n", new->start, new->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 new->policy ? new->policy->policy : 0);
1499}
1500
1501/* Find shared policy intersecting idx */
1502struct mempolicy *
1503mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1504{
1505 struct mempolicy *pol = NULL;
1506 struct sp_node *sn;
1507
1508 if (!sp->root.rb_node)
1509 return NULL;
1510 spin_lock(&sp->lock);
1511 sn = sp_lookup(sp, idx, idx+1);
1512 if (sn) {
1513 mpol_get(sn->policy);
1514 pol = sn->policy;
1515 }
1516 spin_unlock(&sp->lock);
1517 return pol;
1518}
1519
1520static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1521{
Paul Mundt140d5a42007-07-15 23:38:16 -07001522 pr_debug("deleting %lx-l%lx\n", n->start, n->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 rb_erase(&n->nd, &sp->root);
1524 mpol_free(n->policy);
1525 kmem_cache_free(sn_cache, n);
1526}
1527
1528struct sp_node *
1529sp_alloc(unsigned long start, unsigned long end, struct mempolicy *pol)
1530{
1531 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1532
1533 if (!n)
1534 return NULL;
1535 n->start = start;
1536 n->end = end;
1537 mpol_get(pol);
1538 n->policy = pol;
1539 return n;
1540}
1541
1542/* Replace a policy range. */
1543static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1544 unsigned long end, struct sp_node *new)
1545{
1546 struct sp_node *n, *new2 = NULL;
1547
1548restart:
1549 spin_lock(&sp->lock);
1550 n = sp_lookup(sp, start, end);
1551 /* Take care of old policies in the same range. */
1552 while (n && n->start < end) {
1553 struct rb_node *next = rb_next(&n->nd);
1554 if (n->start >= start) {
1555 if (n->end <= end)
1556 sp_delete(sp, n);
1557 else
1558 n->start = end;
1559 } else {
1560 /* Old policy spanning whole new range. */
1561 if (n->end > end) {
1562 if (!new2) {
1563 spin_unlock(&sp->lock);
1564 new2 = sp_alloc(end, n->end, n->policy);
1565 if (!new2)
1566 return -ENOMEM;
1567 goto restart;
1568 }
1569 n->end = start;
1570 sp_insert(sp, new2);
1571 new2 = NULL;
1572 break;
1573 } else
1574 n->end = start;
1575 }
1576 if (!next)
1577 break;
1578 n = rb_entry(next, struct sp_node, nd);
1579 }
1580 if (new)
1581 sp_insert(sp, new);
1582 spin_unlock(&sp->lock);
1583 if (new2) {
1584 mpol_free(new2->policy);
1585 kmem_cache_free(sn_cache, new2);
1586 }
1587 return 0;
1588}
1589
Robin Holt7339ff82006-01-14 13:20:48 -08001590void mpol_shared_policy_init(struct shared_policy *info, int policy,
1591 nodemask_t *policy_nodes)
1592{
1593 info->root = RB_ROOT;
1594 spin_lock_init(&info->lock);
1595
1596 if (policy != MPOL_DEFAULT) {
1597 struct mempolicy *newpol;
1598
1599 /* Falls back to MPOL_DEFAULT on any error */
1600 newpol = mpol_new(policy, policy_nodes);
1601 if (!IS_ERR(newpol)) {
1602 /* Create pseudo-vma that contains just the policy */
1603 struct vm_area_struct pvma;
1604
1605 memset(&pvma, 0, sizeof(struct vm_area_struct));
1606 /* Policy covers entire file */
1607 pvma.vm_end = TASK_SIZE;
1608 mpol_set_shared_policy(info, &pvma, newpol);
1609 mpol_free(newpol);
1610 }
1611 }
1612}
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614int mpol_set_shared_policy(struct shared_policy *info,
1615 struct vm_area_struct *vma, struct mempolicy *npol)
1616{
1617 int err;
1618 struct sp_node *new = NULL;
1619 unsigned long sz = vma_pages(vma);
1620
Paul Mundt140d5a42007-07-15 23:38:16 -07001621 pr_debug("set_shared_policy %lx sz %lu %d %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 vma->vm_pgoff,
1623 sz, npol? npol->policy : -1,
Paul Mundt140d5a42007-07-15 23:38:16 -07001624 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 if (npol) {
1627 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1628 if (!new)
1629 return -ENOMEM;
1630 }
1631 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1632 if (err && new)
1633 kmem_cache_free(sn_cache, new);
1634 return err;
1635}
1636
1637/* Free a backing policy store on inode delete. */
1638void mpol_free_shared_policy(struct shared_policy *p)
1639{
1640 struct sp_node *n;
1641 struct rb_node *next;
1642
1643 if (!p->root.rb_node)
1644 return;
1645 spin_lock(&p->lock);
1646 next = rb_first(&p->root);
1647 while (next) {
1648 n = rb_entry(next, struct sp_node, nd);
1649 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001650 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 mpol_free(n->policy);
1652 kmem_cache_free(sn_cache, n);
1653 }
1654 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
1657/* assumes fs == KERNEL_DS */
1658void __init numa_policy_init(void)
1659{
Paul Mundtb71636e2007-07-15 23:38:15 -07001660 nodemask_t interleave_nodes;
1661 unsigned long largest = 0;
1662 int nid, prefer = 0;
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 policy_cache = kmem_cache_create("numa_policy",
1665 sizeof(struct mempolicy),
Paul Mundt20c2df82007-07-20 10:11:58 +09001666 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 sn_cache = kmem_cache_create("shared_policy_node",
1669 sizeof(struct sp_node),
Paul Mundt20c2df82007-07-20 10:11:58 +09001670 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Paul Mundtb71636e2007-07-15 23:38:15 -07001672 /*
1673 * Set interleaving policy for system init. Interleaving is only
1674 * enabled across suitably sized nodes (default is >= 16MB), or
1675 * fall back to the largest node if they're all smaller.
1676 */
1677 nodes_clear(interleave_nodes);
1678 for_each_online_node(nid) {
1679 unsigned long total_pages = node_present_pages(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Paul Mundtb71636e2007-07-15 23:38:15 -07001681 /* Preserve the largest node */
1682 if (largest < total_pages) {
1683 largest = total_pages;
1684 prefer = nid;
1685 }
1686
1687 /* Interleave this node? */
1688 if ((total_pages << PAGE_SHIFT) >= (16 << 20))
1689 node_set(nid, interleave_nodes);
1690 }
1691
1692 /* All too small, use the largest */
1693 if (unlikely(nodes_empty(interleave_nodes)))
1694 node_set(prefer, interleave_nodes);
1695
1696 if (do_set_mempolicy(MPOL_INTERLEAVE, &interleave_nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 printk("numa_policy_init: interleaving failed\n");
1698}
1699
Christoph Lameter8bccd852005-10-29 18:16:59 -07001700/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701void numa_default_policy(void)
1702{
Christoph Lameter8bccd852005-10-29 18:16:59 -07001703 do_set_mempolicy(MPOL_DEFAULT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
Paul Jackson68860ec2005-10-30 15:02:36 -08001705
1706/* Migrate a policy to a different set of nodes */
Paul Jackson74cb2152006-01-08 01:01:56 -08001707void mpol_rebind_policy(struct mempolicy *pol, const nodemask_t *newmask)
Paul Jackson68860ec2005-10-30 15:02:36 -08001708{
Paul Jackson74cb2152006-01-08 01:01:56 -08001709 nodemask_t *mpolmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001710 nodemask_t tmp;
1711
1712 if (!pol)
1713 return;
Paul Jackson74cb2152006-01-08 01:01:56 -08001714 mpolmask = &pol->cpuset_mems_allowed;
1715 if (nodes_equal(*mpolmask, *newmask))
1716 return;
Paul Jackson68860ec2005-10-30 15:02:36 -08001717
1718 switch (pol->policy) {
1719 case MPOL_DEFAULT:
1720 break;
1721 case MPOL_INTERLEAVE:
Paul Jackson74cb2152006-01-08 01:01:56 -08001722 nodes_remap(tmp, pol->v.nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001723 pol->v.nodes = tmp;
Paul Jackson74cb2152006-01-08 01:01:56 -08001724 *mpolmask = *newmask;
1725 current->il_next = node_remap(current->il_next,
1726 *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001727 break;
1728 case MPOL_PREFERRED:
1729 pol->v.preferred_node = node_remap(pol->v.preferred_node,
Paul Jackson74cb2152006-01-08 01:01:56 -08001730 *mpolmask, *newmask);
1731 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001732 break;
1733 case MPOL_BIND: {
1734 nodemask_t nodes;
1735 struct zone **z;
1736 struct zonelist *zonelist;
1737
1738 nodes_clear(nodes);
1739 for (z = pol->v.zonelist->zones; *z; z++)
Christoph Lameter89fa3022006-09-25 23:31:55 -07001740 node_set(zone_to_nid(*z), nodes);
Paul Jackson74cb2152006-01-08 01:01:56 -08001741 nodes_remap(tmp, nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001742 nodes = tmp;
1743
1744 zonelist = bind_zonelist(&nodes);
1745
1746 /* If no mem, then zonelist is NULL and we keep old zonelist.
1747 * If that old zonelist has no remaining mems_allowed nodes,
1748 * then zonelist_policy() will "FALL THROUGH" to MPOL_DEFAULT.
1749 */
1750
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -08001751 if (!IS_ERR(zonelist)) {
Paul Jackson68860ec2005-10-30 15:02:36 -08001752 /* Good - got mem - substitute new zonelist */
1753 kfree(pol->v.zonelist);
1754 pol->v.zonelist = zonelist;
1755 }
Paul Jackson74cb2152006-01-08 01:01:56 -08001756 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001757 break;
1758 }
1759 default:
1760 BUG();
1761 break;
1762 }
1763}
1764
1765/*
Paul Jackson74cb2152006-01-08 01:01:56 -08001766 * Wrapper for mpol_rebind_policy() that just requires task
1767 * pointer, and updates task mempolicy.
Paul Jackson68860ec2005-10-30 15:02:36 -08001768 */
Paul Jackson74cb2152006-01-08 01:01:56 -08001769
1770void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new)
Paul Jackson68860ec2005-10-30 15:02:36 -08001771{
Paul Jackson74cb2152006-01-08 01:01:56 -08001772 mpol_rebind_policy(tsk->mempolicy, new);
Paul Jackson68860ec2005-10-30 15:02:36 -08001773}
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001774
1775/*
Paul Jackson42253992006-01-08 01:01:59 -08001776 * Rebind each vma in mm to new nodemask.
1777 *
1778 * Call holding a reference to mm. Takes mm->mmap_sem during call.
1779 */
1780
1781void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
1782{
1783 struct vm_area_struct *vma;
1784
1785 down_write(&mm->mmap_sem);
1786 for (vma = mm->mmap; vma; vma = vma->vm_next)
1787 mpol_rebind_policy(vma->vm_policy, new);
1788 up_write(&mm->mmap_sem);
1789}
1790
1791/*
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001792 * Display pages allocated per node and memory policy via /proc.
1793 */
1794
Helge Deller15ad7cd2006-12-06 20:40:36 -08001795static const char * const policy_types[] =
1796 { "default", "prefer", "bind", "interleave" };
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001797
1798/*
1799 * Convert a mempolicy into a string.
1800 * Returns the number of characters in buffer (if positive)
1801 * or an error (negative)
1802 */
1803static inline int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol)
1804{
1805 char *p = buffer;
1806 int l;
1807 nodemask_t nodes;
1808 int mode = pol ? pol->policy : MPOL_DEFAULT;
1809
1810 switch (mode) {
1811 case MPOL_DEFAULT:
1812 nodes_clear(nodes);
1813 break;
1814
1815 case MPOL_PREFERRED:
1816 nodes_clear(nodes);
1817 node_set(pol->v.preferred_node, nodes);
1818 break;
1819
1820 case MPOL_BIND:
1821 get_zonemask(pol, &nodes);
1822 break;
1823
1824 case MPOL_INTERLEAVE:
1825 nodes = pol->v.nodes;
1826 break;
1827
1828 default:
1829 BUG();
1830 return -EFAULT;
1831 }
1832
1833 l = strlen(policy_types[mode]);
1834 if (buffer + maxlen < p + l + 1)
1835 return -ENOSPC;
1836
1837 strcpy(p, policy_types[mode]);
1838 p += l;
1839
1840 if (!nodes_empty(nodes)) {
1841 if (buffer + maxlen < p + 2)
1842 return -ENOSPC;
1843 *p++ = '=';
1844 p += nodelist_scnprintf(p, buffer + maxlen - p, nodes);
1845 }
1846 return p - buffer;
1847}
1848
1849struct numa_maps {
1850 unsigned long pages;
1851 unsigned long anon;
Christoph Lameter397874d2006-03-06 15:42:53 -08001852 unsigned long active;
1853 unsigned long writeback;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001854 unsigned long mapcount_max;
Christoph Lameter397874d2006-03-06 15:42:53 -08001855 unsigned long dirty;
1856 unsigned long swapcache;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001857 unsigned long node[MAX_NUMNODES];
1858};
1859
Christoph Lameter397874d2006-03-06 15:42:53 -08001860static void gather_stats(struct page *page, void *private, int pte_dirty)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001861{
1862 struct numa_maps *md = private;
1863 int count = page_mapcount(page);
1864
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001865 md->pages++;
Christoph Lameter397874d2006-03-06 15:42:53 -08001866 if (pte_dirty || PageDirty(page))
1867 md->dirty++;
1868
1869 if (PageSwapCache(page))
1870 md->swapcache++;
1871
1872 if (PageActive(page))
1873 md->active++;
1874
1875 if (PageWriteback(page))
1876 md->writeback++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001877
1878 if (PageAnon(page))
1879 md->anon++;
1880
Christoph Lameter397874d2006-03-06 15:42:53 -08001881 if (count > md->mapcount_max)
1882 md->mapcount_max = count;
1883
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001884 md->node[page_to_nid(page)]++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001885}
1886
Andrew Morton7f709ed2006-03-07 21:55:22 -08001887#ifdef CONFIG_HUGETLB_PAGE
Christoph Lameter397874d2006-03-06 15:42:53 -08001888static void check_huge_range(struct vm_area_struct *vma,
1889 unsigned long start, unsigned long end,
1890 struct numa_maps *md)
1891{
1892 unsigned long addr;
1893 struct page *page;
1894
1895 for (addr = start; addr < end; addr += HPAGE_SIZE) {
1896 pte_t *ptep = huge_pte_offset(vma->vm_mm, addr & HPAGE_MASK);
1897 pte_t pte;
1898
1899 if (!ptep)
1900 continue;
1901
1902 pte = *ptep;
1903 if (pte_none(pte))
1904 continue;
1905
1906 page = pte_page(pte);
1907 if (!page)
1908 continue;
1909
1910 gather_stats(page, md, pte_dirty(*ptep));
1911 }
1912}
Andrew Morton7f709ed2006-03-07 21:55:22 -08001913#else
1914static inline void check_huge_range(struct vm_area_struct *vma,
1915 unsigned long start, unsigned long end,
1916 struct numa_maps *md)
1917{
1918}
1919#endif
Christoph Lameter397874d2006-03-06 15:42:53 -08001920
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001921int show_numa_map(struct seq_file *m, void *v)
1922{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001923 struct proc_maps_private *priv = m->private;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001924 struct vm_area_struct *vma = v;
1925 struct numa_maps *md;
Christoph Lameter397874d2006-03-06 15:42:53 -08001926 struct file *file = vma->vm_file;
1927 struct mm_struct *mm = vma->vm_mm;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001928 struct mempolicy *pol;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001929 int n;
1930 char buffer[50];
1931
Christoph Lameter397874d2006-03-06 15:42:53 -08001932 if (!mm)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001933 return 0;
1934
1935 md = kzalloc(sizeof(struct numa_maps), GFP_KERNEL);
1936 if (!md)
1937 return 0;
1938
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001939 pol = get_vma_policy(priv->task, vma, vma->vm_start);
1940 mpol_to_str(buffer, sizeof(buffer), pol);
1941 /*
1942 * unref shared or other task's mempolicy
1943 */
1944 if (pol != &default_policy && pol != current->mempolicy)
1945 __mpol_free(pol);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001946
Christoph Lameter397874d2006-03-06 15:42:53 -08001947 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001948
Christoph Lameter397874d2006-03-06 15:42:53 -08001949 if (file) {
1950 seq_printf(m, " file=");
Josef Sipeke9536ae2006-12-08 02:37:21 -08001951 seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n\t= ");
Christoph Lameter397874d2006-03-06 15:42:53 -08001952 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
1953 seq_printf(m, " heap");
1954 } else if (vma->vm_start <= mm->start_stack &&
1955 vma->vm_end >= mm->start_stack) {
1956 seq_printf(m, " stack");
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001957 }
Christoph Lameter397874d2006-03-06 15:42:53 -08001958
1959 if (is_vm_hugetlb_page(vma)) {
1960 check_huge_range(vma, vma->vm_start, vma->vm_end, md);
1961 seq_printf(m, " huge");
1962 } else {
1963 check_pgd_range(vma, vma->vm_start, vma->vm_end,
1964 &node_online_map, MPOL_MF_STATS, md);
1965 }
1966
1967 if (!md->pages)
1968 goto out;
1969
1970 if (md->anon)
1971 seq_printf(m," anon=%lu",md->anon);
1972
1973 if (md->dirty)
1974 seq_printf(m," dirty=%lu",md->dirty);
1975
1976 if (md->pages != md->anon && md->pages != md->dirty)
1977 seq_printf(m, " mapped=%lu", md->pages);
1978
1979 if (md->mapcount_max > 1)
1980 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1981
1982 if (md->swapcache)
1983 seq_printf(m," swapcache=%lu", md->swapcache);
1984
1985 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1986 seq_printf(m," active=%lu", md->active);
1987
1988 if (md->writeback)
1989 seq_printf(m," writeback=%lu", md->writeback);
1990
1991 for_each_online_node(n)
1992 if (md->node[n])
1993 seq_printf(m, " N%d=%lu", n, md->node[n]);
1994out:
1995 seq_putc(m, '\n');
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001996 kfree(md);
1997
1998 if (m->count < m->size)
Eric W. Biederman99f89552006-06-26 00:25:55 -07001999 m->version = (vma != priv->tail_vma) ? vma->vm_start : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002000 return 0;
2001}
2002