blob: acb5ee3587c30a8c95310b41dc945bae2c43dc65 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Simple NUMA memory policy for the Linux kernel.
3 *
4 * Copyright 2003,2004 Andi Kleen, SuSE Labs.
Christoph Lameter8bccd852005-10-29 18:16:59 -07005 * (C) Copyright 2005 Christoph Lameter, Silicon Graphics, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Subject to the GNU Public License, version 2.
7 *
8 * NUMA policy allows the user to give hints in which node(s) memory should
9 * be allocated.
10 *
11 * Support four policies per VMA and per process:
12 *
13 * The VMA policy has priority over the process policy for a page fault.
14 *
15 * interleave Allocate memory interleaved over a set of nodes,
16 * with normal fallback if it fails.
17 * For VMA based allocations this interleaves based on the
18 * offset into the backing object or offset into the mapping
19 * for anonymous memory. For process policy an process counter
20 * is used.
Christoph Lameter8bccd852005-10-29 18:16:59 -070021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * bind Only allocate memory on a specific set of nodes,
23 * no fallback.
Christoph Lameter8bccd852005-10-29 18:16:59 -070024 * FIXME: memory is allocated starting with the first node
25 * to the last. It would be better if bind would truly restrict
26 * the allocation to memory nodes instead
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * preferred Try a specific node first before normal fallback.
29 * As a special case node -1 here means do the allocation
30 * on the local CPU. This is normally identical to default,
31 * but useful to set in a VMA when you have a non default
32 * process policy.
Christoph Lameter8bccd852005-10-29 18:16:59 -070033 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * default Allocate on the local node first, or when on a VMA
35 * use the process policy. This is what Linux always did
36 * in a NUMA aware kernel and still does by, ahem, default.
37 *
38 * The process policy is applied for most non interrupt memory allocations
39 * in that process' context. Interrupts ignore the policies and always
40 * try to allocate on the local CPU. The VMA policy is only applied for memory
41 * allocations for a VMA in the VM.
42 *
43 * Currently there are a few corner cases in swapping where the policy
44 * is not applied, but the majority should be handled. When process policy
45 * is used it is not remembered over swap outs/swap ins.
46 *
47 * Only the highest zone in the zone hierarchy gets policied. Allocations
48 * requesting a lower zone just use default policy. This implies that
49 * on systems with highmem kernel lowmem allocation don't get policied.
50 * Same with GFP_DMA allocations.
51 *
52 * For shmfs/tmpfs/hugetlbfs shared memory the policy is shared between
53 * all users and remembered even when nobody has memory mapped.
54 */
55
56/* Notebook:
57 fix mmap readahead to honour policy and enable policy for any page cache
58 object
59 statistics for bigpages
60 global policy for page cache? currently it uses process policy. Requires
61 first item above.
62 handle mremap for shared memory (currently ignored for the policy)
63 grows down?
64 make bind policy root only? It can trigger oom much faster and the
65 kernel is not always grateful with that.
66 could replace all the switch()es with a mempolicy_ops structure.
67*/
68
69#include <linux/mempolicy.h>
70#include <linux/mm.h>
71#include <linux/highmem.h>
72#include <linux/hugetlb.h>
73#include <linux/kernel.h>
74#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/nodemask.h>
76#include <linux/cpuset.h>
77#include <linux/gfp.h>
78#include <linux/slab.h>
79#include <linux/string.h>
80#include <linux/module.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070081#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/interrupt.h>
83#include <linux/init.h>
84#include <linux/compat.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080085#include <linux/swap.h>
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080086#include <linux/seq_file.h>
87#include <linux/proc_fs.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080088#include <linux/migrate.h>
Christoph Lameter95a402c2006-06-23 02:03:53 -070089#include <linux/rmap.h>
David Quigley86c3a762006-06-23 02:04:02 -070090#include <linux/security.h>
Adrian Bunkdbcb0f12007-10-16 01:26:26 -070091#include <linux/syscalls.h>
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <asm/tlbflush.h>
94#include <asm/uaccess.h>
95
Christoph Lameter38e35862006-01-08 01:01:01 -080096/* Internal flags */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080097#define MPOL_MF_DISCONTIG_OK (MPOL_MF_INTERNAL << 0) /* Skip checks for continuous vmas */
Christoph Lameter38e35862006-01-08 01:01:01 -080098#define MPOL_MF_INVERT (MPOL_MF_INTERNAL << 1) /* Invert check for nodemask */
Christoph Lameter1a75a6c2006-01-08 01:01:02 -080099#define MPOL_MF_STATS (MPOL_MF_INTERNAL << 2) /* Gather statistics */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800100
Pekka Enbergfcc234f2006-03-22 00:08:13 -0800101static struct kmem_cache *policy_cache;
102static struct kmem_cache *sn_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* Highest zone. An specific allocation for a zone below that is not
105 policied. */
Christoph Lameter62672762007-02-10 01:43:07 -0800106enum zone_type policy_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Andi Kleend42c6992005-07-06 19:56:03 +0200108struct mempolicy default_policy = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .refcnt = ATOMIC_INIT(1), /* never free it */
110 .policy = MPOL_DEFAULT,
111};
112
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700113static void mpol_rebind_policy(struct mempolicy *pol,
114 const nodemask_t *newmask);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* Do sanity checking on a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700117static int mpol_check_policy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900119 int was_empty, is_empty;
120
121 if (!nodes)
122 return 0;
123
124 /*
125 * "Contextualize" the in-coming nodemast for cpusets:
126 * Remember whether in-coming nodemask was empty, If not,
127 * restrict the nodes to the allowed nodes in the cpuset.
128 * This is guaranteed to be a subset of nodes with memory.
129 */
130 cpuset_update_task_memory_state();
131 is_empty = was_empty = nodes_empty(*nodes);
132 if (!was_empty) {
133 nodes_and(*nodes, *nodes, cpuset_current_mems_allowed);
134 is_empty = nodes_empty(*nodes); /* after "contextualization" */
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 switch (mode) {
138 case MPOL_DEFAULT:
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900139 /*
140 * require caller to specify an empty nodemask
141 * before "contextualization"
142 */
143 if (!was_empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return -EINVAL;
145 break;
146 case MPOL_BIND:
147 case MPOL_INTERLEAVE:
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900148 /*
149 * require at least 1 valid node after "contextualization"
150 */
151 if (is_empty)
152 return -EINVAL;
153 break;
154 case MPOL_PREFERRED:
155 /*
156 * Did caller specify invalid nodes?
157 * Don't silently accept this as "local allocation".
158 */
159 if (!was_empty && is_empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EINVAL;
161 break;
162 }
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
Andi Kleendd942ae2006-02-17 01:39:16 +0100165
Mel Gorman19770b32008-04-28 02:12:18 -0700166/* Check that the nodemask contains at least one populated zone */
167static int is_valid_nodemask(nodemask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Mel Gorman19770b32008-04-28 02:12:18 -0700169 int nd, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Mel Gorman19770b32008-04-28 02:12:18 -0700171 /* Check that there is something useful in this mask */
172 k = policy_zone;
173
174 for_each_node_mask(nd, *nodemask) {
175 struct zone *z;
176
177 for (k = 0; k <= policy_zone; k++) {
178 z = &NODE_DATA(nd)->node_zones[k];
179 if (z->present_pages > 0)
180 return 1;
Andi Kleendd942ae2006-02-17 01:39:16 +0100181 }
182 }
Mel Gorman19770b32008-04-28 02:12:18 -0700183
184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187/* Create a new policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700188static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct mempolicy *policy;
191
Paul Mundt140d5a42007-07-15 23:38:16 -0700192 pr_debug("setting mode %d nodes[0] %lx\n",
193 mode, nodes ? nodes_addr(*nodes)[0] : -1);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (mode == MPOL_DEFAULT)
196 return NULL;
197 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
198 if (!policy)
199 return ERR_PTR(-ENOMEM);
200 atomic_set(&policy->refcnt, 1);
201 switch (mode) {
202 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700203 policy->v.nodes = *nodes;
Christoph Lameter6eaf8062007-10-16 01:25:30 -0700204 if (nodes_weight(policy->v.nodes) == 0) {
Andi Kleen8f493d72006-01-03 00:07:28 +0100205 kmem_cache_free(policy_cache, policy);
206 return ERR_PTR(-EINVAL);
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
209 case MPOL_PREFERRED:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700210 policy->v.preferred_node = first_node(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (policy->v.preferred_node >= MAX_NUMNODES)
212 policy->v.preferred_node = -1;
213 break;
214 case MPOL_BIND:
Mel Gorman19770b32008-04-28 02:12:18 -0700215 if (!is_valid_nodemask(nodes)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 kmem_cache_free(policy_cache, policy);
Mel Gorman19770b32008-04-28 02:12:18 -0700217 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Mel Gorman19770b32008-04-28 02:12:18 -0700219 policy->v.nodes = *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
221 }
222 policy->policy = mode;
Paul Jackson74cb2152006-01-08 01:01:56 -0800223 policy->cpuset_mems_allowed = cpuset_mems_allowed(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return policy;
225}
226
Christoph Lameter397874d2006-03-06 15:42:53 -0800227static void gather_stats(struct page *, void *, int pte_dirty);
Christoph Lameterfc301282006-01-18 17:42:29 -0800228static void migrate_page_add(struct page *page, struct list_head *pagelist,
229 unsigned long flags);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800230
Christoph Lameter38e35862006-01-08 01:01:01 -0800231/* Scan through pages checking if pages follow certain conditions. */
Nick Pigginb5810032005-10-29 18:16:12 -0700232static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800233 unsigned long addr, unsigned long end,
234 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800235 void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Hugh Dickins91612e02005-06-21 17:15:07 -0700237 pte_t *orig_pte;
238 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700239 spinlock_t *ptl;
Hugh Dickins941150a2005-06-21 17:15:06 -0700240
Hugh Dickins705e87c2005-10-29 18:16:27 -0700241 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700242 do {
Linus Torvalds6aab3412005-11-28 14:34:23 -0800243 struct page *page;
Andy Whitcroft25ba77c2006-12-06 20:33:03 -0800244 int nid;
Hugh Dickins91612e02005-06-21 17:15:07 -0700245
246 if (!pte_present(*pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800248 page = vm_normal_page(vma, addr, *pte);
249 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 continue;
Nick Piggin053837f2006-01-18 17:42:27 -0800251 /*
252 * The check for PageReserved here is important to avoid
253 * handling zero pages and other pages that may have been
254 * marked special by the system.
255 *
256 * If the PageReserved would not be checked here then f.e.
257 * the location of the zero page could have an influence
258 * on MPOL_MF_STRICT, zero pages would be counted for
259 * the per node stats, and there would be useless attempts
260 * to put zero pages on the migration list.
261 */
Christoph Lameterf4598c82006-01-12 01:05:20 -0800262 if (PageReserved(page))
263 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800264 nid = page_to_nid(page);
Christoph Lameter38e35862006-01-08 01:01:01 -0800265 if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT))
266 continue;
267
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800268 if (flags & MPOL_MF_STATS)
Christoph Lameter397874d2006-03-06 15:42:53 -0800269 gather_stats(page, private, pte_dirty(*pte));
Nick Piggin053837f2006-01-18 17:42:27 -0800270 else if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
Christoph Lameterfc301282006-01-18 17:42:29 -0800271 migrate_page_add(page, private, flags);
Christoph Lameter38e35862006-01-08 01:01:01 -0800272 else
273 break;
Hugh Dickins91612e02005-06-21 17:15:07 -0700274 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700275 pte_unmap_unlock(orig_pte, ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700276 return addr != end;
277}
278
Nick Pigginb5810032005-10-29 18:16:12 -0700279static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800280 unsigned long addr, unsigned long end,
281 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800282 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700283{
284 pmd_t *pmd;
285 unsigned long next;
286
287 pmd = pmd_offset(pud, addr);
288 do {
289 next = pmd_addr_end(addr, end);
290 if (pmd_none_or_clear_bad(pmd))
291 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800292 if (check_pte_range(vma, pmd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800293 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700294 return -EIO;
295 } while (pmd++, addr = next, addr != end);
296 return 0;
297}
298
Nick Pigginb5810032005-10-29 18:16:12 -0700299static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800300 unsigned long addr, unsigned long end,
301 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800302 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700303{
304 pud_t *pud;
305 unsigned long next;
306
307 pud = pud_offset(pgd, addr);
308 do {
309 next = pud_addr_end(addr, end);
310 if (pud_none_or_clear_bad(pud))
311 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800312 if (check_pmd_range(vma, pud, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800313 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700314 return -EIO;
315 } while (pud++, addr = next, addr != end);
316 return 0;
317}
318
Nick Pigginb5810032005-10-29 18:16:12 -0700319static inline int check_pgd_range(struct vm_area_struct *vma,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800320 unsigned long addr, unsigned long end,
321 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800322 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700323{
324 pgd_t *pgd;
325 unsigned long next;
326
Nick Pigginb5810032005-10-29 18:16:12 -0700327 pgd = pgd_offset(vma->vm_mm, addr);
Hugh Dickins91612e02005-06-21 17:15:07 -0700328 do {
329 next = pgd_addr_end(addr, end);
330 if (pgd_none_or_clear_bad(pgd))
331 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800332 if (check_pud_range(vma, pgd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800333 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700334 return -EIO;
335 } while (pgd++, addr = next, addr != end);
336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800339/*
340 * Check if all pages in a range are on a set of nodes.
341 * If pagelist != NULL then isolate pages from the LRU and
342 * put them on the pagelist.
343 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static struct vm_area_struct *
345check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
Christoph Lameter38e35862006-01-08 01:01:01 -0800346 const nodemask_t *nodes, unsigned long flags, void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 int err;
349 struct vm_area_struct *first, *vma, *prev;
350
Christoph Lameter90036ee2006-03-16 23:03:59 -0800351 if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) {
Christoph Lameter90036ee2006-03-16 23:03:59 -0800352
Christoph Lameterb20a3502006-03-22 00:09:12 -0800353 err = migrate_prep();
354 if (err)
355 return ERR_PTR(err);
Christoph Lameter90036ee2006-03-16 23:03:59 -0800356 }
Nick Piggin053837f2006-01-18 17:42:27 -0800357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 first = find_vma(mm, start);
359 if (!first)
360 return ERR_PTR(-EFAULT);
361 prev = NULL;
362 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800363 if (!(flags & MPOL_MF_DISCONTIG_OK)) {
364 if (!vma->vm_next && vma->vm_end < end)
365 return ERR_PTR(-EFAULT);
366 if (prev && prev->vm_end < vma->vm_start)
367 return ERR_PTR(-EFAULT);
368 }
369 if (!is_vm_hugetlb_page(vma) &&
370 ((flags & MPOL_MF_STRICT) ||
371 ((flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) &&
372 vma_migratable(vma)))) {
Andi Kleen5b952b32005-09-13 01:25:08 -0700373 unsigned long endvma = vma->vm_end;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800374
Andi Kleen5b952b32005-09-13 01:25:08 -0700375 if (endvma > end)
376 endvma = end;
377 if (vma->vm_start > start)
378 start = vma->vm_start;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800379 err = check_pgd_range(vma, start, endvma, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800380 flags, private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (err) {
382 first = ERR_PTR(err);
383 break;
384 }
385 }
386 prev = vma;
387 }
388 return first;
389}
390
391/* Apply policy to a single VMA */
392static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
393{
394 int err = 0;
395 struct mempolicy *old = vma->vm_policy;
396
Paul Mundt140d5a42007-07-15 23:38:16 -0700397 pr_debug("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 vma->vm_start, vma->vm_end, vma->vm_pgoff,
399 vma->vm_ops, vma->vm_file,
400 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
401
402 if (vma->vm_ops && vma->vm_ops->set_policy)
403 err = vma->vm_ops->set_policy(vma, new);
404 if (!err) {
405 mpol_get(new);
406 vma->vm_policy = new;
407 mpol_free(old);
408 }
409 return err;
410}
411
412/* Step 2: apply policy to a range and do splits. */
413static int mbind_range(struct vm_area_struct *vma, unsigned long start,
414 unsigned long end, struct mempolicy *new)
415{
416 struct vm_area_struct *next;
417 int err;
418
419 err = 0;
420 for (; vma && vma->vm_start < end; vma = next) {
421 next = vma->vm_next;
422 if (vma->vm_start < start)
423 err = split_vma(vma->vm_mm, vma, start, 1);
424 if (!err && vma->vm_end > end)
425 err = split_vma(vma->vm_mm, vma, end, 0);
426 if (!err)
427 err = policy_vma(vma, new);
428 if (err)
429 break;
430 }
431 return err;
432}
433
Paul Jacksonc61afb12006-03-24 03:16:08 -0800434/*
435 * Update task->flags PF_MEMPOLICY bit: set iff non-default
436 * mempolicy. Allows more rapid checking of this (combined perhaps
437 * with other PF_* flag bits) on memory allocation hot code paths.
438 *
439 * If called from outside this file, the task 'p' should -only- be
440 * a newly forked child not yet visible on the task list, because
441 * manipulating the task flags of a visible task is not safe.
442 *
443 * The above limitation is why this routine has the funny name
444 * mpol_fix_fork_child_flag().
445 *
446 * It is also safe to call this with a task pointer of current,
447 * which the static wrapper mpol_set_task_struct_flag() does,
448 * for use within this file.
449 */
450
451void mpol_fix_fork_child_flag(struct task_struct *p)
452{
453 if (p->mempolicy)
454 p->flags |= PF_MEMPOLICY;
455 else
456 p->flags &= ~PF_MEMPOLICY;
457}
458
459static void mpol_set_task_struct_flag(void)
460{
461 mpol_fix_fork_child_flag(current);
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/* Set the process memory policy */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700465static long do_set_mempolicy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct mempolicy *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900469 if (mpol_check_policy(mode, nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700471 new = mpol_new(mode, nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (IS_ERR(new))
473 return PTR_ERR(new);
474 mpol_free(current->mempolicy);
475 current->mempolicy = new;
Paul Jacksonc61afb12006-03-24 03:16:08 -0800476 mpol_set_task_struct_flag();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (new && new->policy == MPOL_INTERLEAVE)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700478 current->il_next = first_node(new->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
480}
481
482/* Fill a zone bitmap for a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700483static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Andi Kleendfcd3c02005-10-29 18:15:48 -0700485 nodes_clear(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 switch (p->policy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 case MPOL_DEFAULT:
488 break;
Mel Gorman19770b32008-04-28 02:12:18 -0700489 case MPOL_BIND:
490 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 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:
Christoph Lameter56bbd652007-10-16 01:25:35 -0700495 /* or use current node instead of memory_map? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (p->v.preferred_node < 0)
Christoph Lameter56bbd652007-10-16 01:25:35 -0700497 *nodes = node_states[N_HIGH_MEMORY];
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 */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700520static long 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 */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700612static int migrate_to_node(struct mm_struct *mm, int source, int dest,
613 int flags)
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800614{
615 nodemask_t nmask;
616 LIST_HEAD(pagelist);
617 int err = 0;
618
619 nodes_clear(nmask);
620 node_set(source, nmask);
621
622 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nmask,
623 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
624
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700625 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700626 err = migrate_pages(&pagelist, new_node_page, dest);
627
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800628 return err;
629}
630
631/*
632 * Move pages between the two nodesets so as to preserve the physical
633 * layout as much as possible.
Christoph Lameter39743882006-01-08 01:00:51 -0800634 *
635 * Returns the number of page that could not be moved.
636 */
637int do_migrate_pages(struct mm_struct *mm,
638 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
639{
640 LIST_HEAD(pagelist);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800641 int busy = 0;
642 int err = 0;
643 nodemask_t tmp;
Christoph Lameter39743882006-01-08 01:00:51 -0800644
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800645 down_read(&mm->mmap_sem);
Christoph Lameter39743882006-01-08 01:00:51 -0800646
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700647 err = migrate_vmas(mm, from_nodes, to_nodes, flags);
648 if (err)
649 goto out;
650
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800651/*
652 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
653 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
654 * bit in 'tmp', and return that <source, dest> pair for migration.
655 * The pair of nodemasks 'to' and 'from' define the map.
656 *
657 * If no pair of bits is found that way, fallback to picking some
658 * pair of 'source' and 'dest' bits that are not the same. If the
659 * 'source' and 'dest' bits are the same, this represents a node
660 * that will be migrating to itself, so no pages need move.
661 *
662 * If no bits are left in 'tmp', or if all remaining bits left
663 * in 'tmp' correspond to the same bit in 'to', return false
664 * (nothing left to migrate).
665 *
666 * This lets us pick a pair of nodes to migrate between, such that
667 * if possible the dest node is not already occupied by some other
668 * source node, minimizing the risk of overloading the memory on a
669 * node that would happen if we migrated incoming memory to a node
670 * before migrating outgoing memory source that same node.
671 *
672 * A single scan of tmp is sufficient. As we go, we remember the
673 * most recent <s, d> pair that moved (s != d). If we find a pair
674 * that not only moved, but what's better, moved to an empty slot
675 * (d is not set in tmp), then we break out then, with that pair.
676 * Otherwise when we finish scannng from_tmp, we at least have the
677 * most recent <s, d> pair that moved. If we get all the way through
678 * the scan of tmp without finding any node that moved, much less
679 * moved to an empty node, then there is nothing left worth migrating.
680 */
Christoph Lameterd4984712006-01-08 01:00:55 -0800681
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800682 tmp = *from_nodes;
683 while (!nodes_empty(tmp)) {
684 int s,d;
685 int source = -1;
686 int dest = 0;
687
688 for_each_node_mask(s, tmp) {
689 d = node_remap(s, *from_nodes, *to_nodes);
690 if (s == d)
691 continue;
692
693 source = s; /* Node moved. Memorize */
694 dest = d;
695
696 /* dest not in remaining from nodes? */
697 if (!node_isset(dest, tmp))
698 break;
699 }
700 if (source == -1)
701 break;
702
703 node_clear(source, tmp);
704 err = migrate_to_node(mm, source, dest, flags);
705 if (err > 0)
706 busy += err;
707 if (err < 0)
708 break;
Christoph Lameter39743882006-01-08 01:00:51 -0800709 }
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700710out:
Christoph Lameter39743882006-01-08 01:00:51 -0800711 up_read(&mm->mmap_sem);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800712 if (err < 0)
713 return err;
714 return busy;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800715
Christoph Lameter39743882006-01-08 01:00:51 -0800716}
717
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800718/*
719 * Allocate a new page for page migration based on vma policy.
720 * Start assuming that page is mapped by vma pointed to by @private.
721 * Search forward from there, if not. N.B., this assumes that the
722 * list of pages handed to migrate_pages()--which is how we get here--
723 * is in virtual address order.
724 */
Christoph Lameter742755a2006-06-23 02:03:55 -0700725static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700726{
727 struct vm_area_struct *vma = (struct vm_area_struct *)private;
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800728 unsigned long uninitialized_var(address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700729
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800730 while (vma) {
731 address = page_address_in_vma(page, vma);
732 if (address != -EFAULT)
733 break;
734 vma = vma->vm_next;
735 }
736
737 /*
738 * if !vma, alloc_page_vma() will use task or system default policy
739 */
740 return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700741}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800742#else
743
744static void migrate_page_add(struct page *page, struct list_head *pagelist,
745 unsigned long flags)
746{
747}
748
749int do_migrate_pages(struct mm_struct *mm,
750 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
751{
752 return -ENOSYS;
753}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700754
Keith Owens69939742006-10-11 01:21:28 -0700755static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700756{
757 return NULL;
758}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800759#endif
760
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700761static long do_mbind(unsigned long start, unsigned long len,
762 unsigned long mode, nodemask_t *nmask,
763 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800764{
765 struct vm_area_struct *vma;
766 struct mm_struct *mm = current->mm;
767 struct mempolicy *new;
768 unsigned long end;
769 int err;
770 LIST_HEAD(pagelist);
771
772 if ((flags & ~(unsigned long)(MPOL_MF_STRICT |
773 MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
774 || mode > MPOL_MAX)
775 return -EINVAL;
Christoph Lameter74c00242006-03-14 19:50:21 -0800776 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800777 return -EPERM;
778
779 if (start & ~PAGE_MASK)
780 return -EINVAL;
781
782 if (mode == MPOL_DEFAULT)
783 flags &= ~MPOL_MF_STRICT;
784
785 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
786 end = start + len;
787
788 if (end < start)
789 return -EINVAL;
790 if (end == start)
791 return 0;
792
793 if (mpol_check_policy(mode, nmask))
794 return -EINVAL;
795
796 new = mpol_new(mode, nmask);
797 if (IS_ERR(new))
798 return PTR_ERR(new);
799
800 /*
801 * If we are using the default policy then operation
802 * on discontinuous address spaces is okay after all
803 */
804 if (!new)
805 flags |= MPOL_MF_DISCONTIG_OK;
806
Paul Mundt140d5a42007-07-15 23:38:16 -0700807 pr_debug("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
808 mode, nmask ? nodes_addr(*nmask)[0] : -1);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800809
810 down_write(&mm->mmap_sem);
811 vma = check_range(mm, start, end, nmask,
812 flags | MPOL_MF_INVERT, &pagelist);
813
814 err = PTR_ERR(vma);
815 if (!IS_ERR(vma)) {
816 int nr_failed = 0;
817
818 err = mbind_range(vma, start, end, new);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800819
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800820 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700821 nr_failed = migrate_pages(&pagelist, new_vma_page,
822 (unsigned long)vma);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800823
824 if (!err && nr_failed && (flags & MPOL_MF_STRICT))
825 err = -EIO;
826 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800827
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800828 up_write(&mm->mmap_sem);
829 mpol_free(new);
830 return err;
831}
832
Christoph Lameter39743882006-01-08 01:00:51 -0800833/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700834 * User space interface with variable sized bitmaps for nodelists.
835 */
836
837/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800838static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700839 unsigned long maxnode)
840{
841 unsigned long k;
842 unsigned long nlongs;
843 unsigned long endmask;
844
845 --maxnode;
846 nodes_clear(*nodes);
847 if (maxnode == 0 || !nmask)
848 return 0;
Andi Kleena9c930b2006-02-20 18:27:59 -0800849 if (maxnode > PAGE_SIZE*BITS_PER_BYTE)
Chris Wright636f13c2006-02-17 13:59:36 -0800850 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700851
852 nlongs = BITS_TO_LONGS(maxnode);
853 if ((maxnode % BITS_PER_LONG) == 0)
854 endmask = ~0UL;
855 else
856 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
857
858 /* When the user specified more nodes than supported just check
859 if the non supported part is all zero. */
860 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
861 if (nlongs > PAGE_SIZE/sizeof(long))
862 return -EINVAL;
863 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
864 unsigned long t;
865 if (get_user(t, nmask + k))
866 return -EFAULT;
867 if (k == nlongs - 1) {
868 if (t & endmask)
869 return -EINVAL;
870 } else if (t)
871 return -EINVAL;
872 }
873 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
874 endmask = ~0UL;
875 }
876
877 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
878 return -EFAULT;
879 nodes_addr(*nodes)[nlongs-1] &= endmask;
880 return 0;
881}
882
883/* Copy a kernel node mask to user space */
884static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
885 nodemask_t *nodes)
886{
887 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
888 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
889
890 if (copy > nbytes) {
891 if (copy > PAGE_SIZE)
892 return -EINVAL;
893 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
894 return -EFAULT;
895 copy = nbytes;
896 }
897 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
898}
899
900asmlinkage long sys_mbind(unsigned long start, unsigned long len,
901 unsigned long mode,
902 unsigned long __user *nmask, unsigned long maxnode,
903 unsigned flags)
904{
905 nodemask_t nodes;
906 int err;
907
908 err = get_nodes(&nodes, nmask, maxnode);
909 if (err)
910 return err;
911 return do_mbind(start, len, mode, &nodes, flags);
912}
913
914/* Set the process memory policy */
915asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
916 unsigned long maxnode)
917{
918 int err;
919 nodemask_t nodes;
920
921 if (mode < 0 || mode > MPOL_MAX)
922 return -EINVAL;
923 err = get_nodes(&nodes, nmask, maxnode);
924 if (err)
925 return err;
926 return do_set_mempolicy(mode, &nodes);
927}
928
Christoph Lameter39743882006-01-08 01:00:51 -0800929asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
930 const unsigned long __user *old_nodes,
931 const unsigned long __user *new_nodes)
932{
933 struct mm_struct *mm;
934 struct task_struct *task;
935 nodemask_t old;
936 nodemask_t new;
937 nodemask_t task_nodes;
938 int err;
939
940 err = get_nodes(&old, old_nodes, maxnode);
941 if (err)
942 return err;
943
944 err = get_nodes(&new, new_nodes, maxnode);
945 if (err)
946 return err;
947
948 /* Find the mm_struct */
949 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700950 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter39743882006-01-08 01:00:51 -0800951 if (!task) {
952 read_unlock(&tasklist_lock);
953 return -ESRCH;
954 }
955 mm = get_task_mm(task);
956 read_unlock(&tasklist_lock);
957
958 if (!mm)
959 return -EINVAL;
960
961 /*
962 * Check if this process has the right to modify the specified
963 * process. The right exists if the process has administrative
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800964 * capabilities, superuser privileges or the same
Christoph Lameter39743882006-01-08 01:00:51 -0800965 * userid as the target process.
966 */
967 if ((current->euid != task->suid) && (current->euid != task->uid) &&
968 (current->uid != task->suid) && (current->uid != task->uid) &&
Christoph Lameter74c00242006-03-14 19:50:21 -0800969 !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800970 err = -EPERM;
971 goto out;
972 }
973
974 task_nodes = cpuset_mems_allowed(task);
975 /* Is the user allowed to access the target nodes? */
Christoph Lameter74c00242006-03-14 19:50:21 -0800976 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800977 err = -EPERM;
978 goto out;
979 }
980
Lee Schermerhorn37b07e42007-10-16 01:25:39 -0700981 if (!nodes_subset(new, node_states[N_HIGH_MEMORY])) {
Christoph Lameter3b42d282007-08-31 00:12:08 -0700982 err = -EINVAL;
983 goto out;
984 }
985
David Quigley86c3a762006-06-23 02:04:02 -0700986 err = security_task_movememory(task);
987 if (err)
988 goto out;
989
Christoph Lameter511030b2006-02-28 16:58:57 -0800990 err = do_migrate_pages(mm, &old, &new,
Christoph Lameter74c00242006-03-14 19:50:21 -0800991 capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
Christoph Lameter39743882006-01-08 01:00:51 -0800992out:
993 mmput(mm);
994 return err;
995}
996
997
Christoph Lameter8bccd852005-10-29 18:16:59 -0700998/* Retrieve NUMA policy */
999asmlinkage long sys_get_mempolicy(int __user *policy,
1000 unsigned long __user *nmask,
1001 unsigned long maxnode,
1002 unsigned long addr, unsigned long flags)
1003{
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001004 int err;
1005 int uninitialized_var(pval);
Christoph Lameter8bccd852005-10-29 18:16:59 -07001006 nodemask_t nodes;
1007
1008 if (nmask != NULL && maxnode < MAX_NUMNODES)
1009 return -EINVAL;
1010
1011 err = do_get_mempolicy(&pval, &nodes, addr, flags);
1012
1013 if (err)
1014 return err;
1015
1016 if (policy && put_user(pval, policy))
1017 return -EFAULT;
1018
1019 if (nmask)
1020 err = copy_nodes_to_user(nmask, maxnode, &nodes);
1021
1022 return err;
1023}
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025#ifdef CONFIG_COMPAT
1026
1027asmlinkage long compat_sys_get_mempolicy(int __user *policy,
1028 compat_ulong_t __user *nmask,
1029 compat_ulong_t maxnode,
1030 compat_ulong_t addr, compat_ulong_t flags)
1031{
1032 long err;
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 nm = compat_alloc_user_space(alloc_size);
1042
1043 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
1044
1045 if (!err && nmask) {
1046 err = copy_from_user(bm, nm, alloc_size);
1047 /* ensure entire bitmap is zeroed */
1048 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
1049 err |= compat_put_bitmap(nmask, bm, nr_bits);
1050 }
1051
1052 return err;
1053}
1054
1055asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
1056 compat_ulong_t maxnode)
1057{
1058 long err = 0;
1059 unsigned long __user *nm = NULL;
1060 unsigned long nr_bits, alloc_size;
1061 DECLARE_BITMAP(bm, MAX_NUMNODES);
1062
1063 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1064 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1065
1066 if (nmask) {
1067 err = compat_get_bitmap(bm, nmask, nr_bits);
1068 nm = compat_alloc_user_space(alloc_size);
1069 err |= copy_to_user(nm, bm, alloc_size);
1070 }
1071
1072 if (err)
1073 return -EFAULT;
1074
1075 return sys_set_mempolicy(mode, nm, nr_bits+1);
1076}
1077
1078asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
1079 compat_ulong_t mode, compat_ulong_t __user *nmask,
1080 compat_ulong_t maxnode, compat_ulong_t flags)
1081{
1082 long err = 0;
1083 unsigned long __user *nm = NULL;
1084 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001085 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1088 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1089
1090 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001091 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -07001093 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
1096 if (err)
1097 return -EFAULT;
1098
1099 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
1100}
1101
1102#endif
1103
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001104/*
1105 * get_vma_policy(@task, @vma, @addr)
1106 * @task - task for fallback if vma policy == default
1107 * @vma - virtual memory area whose policy is sought
1108 * @addr - address in @vma for shared policy lookup
1109 *
1110 * Returns effective policy for a VMA at specified address.
1111 * Falls back to @task or system default policy, as necessary.
1112 * Returned policy has extra reference count if shared, vma,
1113 * or some other task's policy [show_numa_maps() can pass
1114 * @task != current]. It is the caller's responsibility to
1115 * free the reference in these cases.
1116 */
Christoph Lameter48fce342006-01-08 01:01:03 -08001117static struct mempolicy * get_vma_policy(struct task_struct *task,
1118 struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001120 struct mempolicy *pol = task->mempolicy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001121 int shared_pol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 if (vma) {
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001124 if (vma->vm_ops && vma->vm_ops->get_policy) {
Christoph Lameter8bccd852005-10-29 18:16:59 -07001125 pol = vma->vm_ops->get_policy(vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001126 shared_pol = 1; /* if pol non-NULL, add ref below */
1127 } else if (vma->vm_policy &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 vma->vm_policy->policy != MPOL_DEFAULT)
1129 pol = vma->vm_policy;
1130 }
1131 if (!pol)
1132 pol = &default_policy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001133 else if (!shared_pol && pol != current->mempolicy)
1134 mpol_get(pol); /* vma or other task's policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return pol;
1136}
1137
Mel Gorman19770b32008-04-28 02:12:18 -07001138/* Return a nodemask representing a mempolicy */
1139static nodemask_t *nodemask_policy(gfp_t gfp, struct mempolicy *policy)
1140{
1141 /* Lower zones don't get a nodemask applied for MPOL_BIND */
1142 if (unlikely(policy->policy == MPOL_BIND) &&
1143 gfp_zone(gfp) >= policy_zone &&
1144 cpuset_nodemask_valid_mems_allowed(&policy->v.nodes))
1145 return &policy->v.nodes;
1146
1147 return NULL;
1148}
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +01001151static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 int nd;
1154
1155 switch (policy->policy) {
1156 case MPOL_PREFERRED:
1157 nd = policy->v.preferred_node;
1158 if (nd < 0)
1159 nd = numa_node_id();
1160 break;
1161 case MPOL_BIND:
Mel Gorman19770b32008-04-28 02:12:18 -07001162 /*
1163 * Normally, MPOL_BIND allocations node-local are node-local
1164 * within the allowed nodemask. However, if __GFP_THISNODE is
1165 * set and the current node is part of the mask, we use the
1166 * the zonelist for the first node in the mask instead.
1167 */
1168 nd = numa_node_id();
1169 if (unlikely(gfp & __GFP_THISNODE) &&
1170 unlikely(!node_isset(nd, policy->v.nodes)))
1171 nd = first_node(policy->v.nodes);
1172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 case MPOL_INTERLEAVE: /* should not happen */
1174 case MPOL_DEFAULT:
1175 nd = numa_node_id();
1176 break;
1177 default:
1178 nd = 0;
1179 BUG();
1180 }
Mel Gorman0e884602008-04-28 02:12:14 -07001181 return node_zonelist(nd, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
1184/* Do dynamic interleaving for a process */
1185static unsigned interleave_nodes(struct mempolicy *policy)
1186{
1187 unsigned nid, next;
1188 struct task_struct *me = current;
1189
1190 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001191 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -07001193 next = first_node(policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 me->il_next = next;
1195 return nid;
1196}
1197
Christoph Lameterdc85da12006-01-18 17:42:36 -08001198/*
1199 * Depending on the memory policy provide a node from which to allocate the
1200 * next slab entry.
1201 */
1202unsigned slab_node(struct mempolicy *policy)
1203{
Christoph Lameter765c4502006-09-27 01:50:08 -07001204 int pol = policy ? policy->policy : MPOL_DEFAULT;
1205
1206 switch (pol) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001207 case MPOL_INTERLEAVE:
1208 return interleave_nodes(policy);
1209
Mel Gormandd1a2392008-04-28 02:12:17 -07001210 case MPOL_BIND: {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001211 /*
1212 * Follow bind policy behavior and start allocation at the
1213 * first node.
1214 */
Mel Gorman19770b32008-04-28 02:12:18 -07001215 struct zonelist *zonelist;
1216 struct zone *zone;
1217 enum zone_type highest_zoneidx = gfp_zone(GFP_KERNEL);
1218 zonelist = &NODE_DATA(numa_node_id())->node_zonelists[0];
1219 (void)first_zones_zonelist(zonelist, highest_zoneidx,
1220 &policy->v.nodes,
1221 &zone);
1222 return zone->node;
Mel Gormandd1a2392008-04-28 02:12:17 -07001223 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08001224
1225 case MPOL_PREFERRED:
1226 if (policy->v.preferred_node >= 0)
1227 return policy->v.preferred_node;
1228 /* Fall through */
1229
1230 default:
1231 return numa_node_id();
1232 }
1233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235/* Do static interleaving for a VMA with known offset. */
1236static unsigned offset_il_node(struct mempolicy *pol,
1237 struct vm_area_struct *vma, unsigned long off)
1238{
Andi Kleendfcd3c02005-10-29 18:15:48 -07001239 unsigned nnodes = nodes_weight(pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 unsigned target = (unsigned)off % nnodes;
1241 int c;
1242 int nid = -1;
1243
1244 c = 0;
1245 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001246 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 c++;
1248 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return nid;
1250}
1251
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001252/* Determine a node number for interleave */
1253static inline unsigned interleave_nid(struct mempolicy *pol,
1254 struct vm_area_struct *vma, unsigned long addr, int shift)
1255{
1256 if (vma) {
1257 unsigned long off;
1258
Nishanth Aravamudan3b98b082006-08-31 21:27:53 -07001259 /*
1260 * for small pages, there is no difference between
1261 * shift and PAGE_SHIFT, so the bit-shift is safe.
1262 * for huge pages, since vm_pgoff is in units of small
1263 * pages, we need to shift off the always 0 bits to get
1264 * a useful offset.
1265 */
1266 BUG_ON(shift < PAGE_SHIFT);
1267 off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001268 off += (addr - vma->vm_start) >> shift;
1269 return offset_il_node(pol, vma, off);
1270 } else
1271 return interleave_nodes(pol);
1272}
1273
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001274#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001275/*
1276 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1277 * @vma = virtual memory area whose policy is sought
1278 * @addr = address in @vma for shared policy lookup and interleave policy
1279 * @gfp_flags = for requested zone
Mel Gorman19770b32008-04-28 02:12:18 -07001280 * @mpol = pointer to mempolicy pointer for reference counted mempolicy
1281 * @nodemask = pointer to nodemask pointer for MPOL_BIND nodemask
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001282 *
1283 * Returns a zonelist suitable for a huge page allocation.
Mel Gorman19770b32008-04-28 02:12:18 -07001284 * If the effective policy is 'BIND, returns pointer to local node's zonelist,
1285 * and a pointer to the mempolicy's @nodemask for filtering the zonelist.
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001286 * If it is also a policy for which get_vma_policy() returns an extra
Mel Gorman19770b32008-04-28 02:12:18 -07001287 * reference, we must hold that reference until after the allocation.
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001288 * In that case, return policy via @mpol so hugetlb allocation can drop
Mel Gorman19770b32008-04-28 02:12:18 -07001289 * the reference. For non-'BIND referenced policies, we can/do drop the
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001290 * reference here, so the caller doesn't need to know about the special case
1291 * for default and current task policy.
1292 */
Mel Gorman396faf02007-07-17 04:03:13 -07001293struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr,
Mel Gorman19770b32008-04-28 02:12:18 -07001294 gfp_t gfp_flags, struct mempolicy **mpol,
1295 nodemask_t **nodemask)
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001296{
1297 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001298 struct zonelist *zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001299
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001300 *mpol = NULL; /* probably no unref needed */
Mel Gorman19770b32008-04-28 02:12:18 -07001301 *nodemask = NULL; /* assume !MPOL_BIND */
1302 if (pol->policy == MPOL_BIND) {
1303 *nodemask = &pol->v.nodes;
1304 } else if (pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001305 unsigned nid;
1306
1307 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001308 if (unlikely(pol != &default_policy &&
1309 pol != current->mempolicy))
1310 __mpol_free(pol); /* finished with pol */
Mel Gorman0e884602008-04-28 02:12:14 -07001311 return node_zonelist(nid, gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001312 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001313
1314 zl = zonelist_policy(GFP_HIGHUSER, pol);
1315 if (unlikely(pol != &default_policy && pol != current->mempolicy)) {
1316 if (pol->policy != MPOL_BIND)
1317 __mpol_free(pol); /* finished with pol */
1318 else
1319 *mpol = pol; /* unref needed after allocation */
1320 }
1321 return zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001322}
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001323#endif
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325/* Allocate a page in interleaved policy.
1326 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001327static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1328 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 struct zonelist *zl;
1331 struct page *page;
1332
Mel Gorman0e884602008-04-28 02:12:14 -07001333 zl = node_zonelist(nid, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 page = __alloc_pages(gfp, order, zl);
Mel Gormandd1a2392008-04-28 02:12:17 -07001335 if (page && page_zone(page) == zonelist_zone(&zl->_zonerefs[0]))
Christoph Lameterca889e62006-06-30 01:55:44 -07001336 inc_zone_page_state(page, NUMA_INTERLEAVE_HIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return page;
1338}
1339
1340/**
1341 * alloc_page_vma - Allocate a page for a VMA.
1342 *
1343 * @gfp:
1344 * %GFP_USER user allocation.
1345 * %GFP_KERNEL kernel allocations,
1346 * %GFP_HIGHMEM highmem/user allocations,
1347 * %GFP_FS allocation should not call back into a file system.
1348 * %GFP_ATOMIC don't sleep.
1349 *
1350 * @vma: Pointer to VMA or NULL if not available.
1351 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1352 *
1353 * This function allocates a page from the kernel page pool and applies
1354 * a NUMA policy associated with the VMA or the current process.
1355 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1356 * mm_struct of the VMA to prevent it from going away. Should be used for
1357 * all allocations for pages that will be mapped into
1358 * user space. Returns NULL when no page can be allocated.
1359 *
1360 * Should be called with the mm_sem of the vma hold.
1361 */
1362struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001363alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001365 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001366 struct zonelist *zl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001368 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1371 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001372
1373 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001374 if (unlikely(pol != &default_policy &&
1375 pol != current->mempolicy))
1376 __mpol_free(pol); /* finished with pol */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return alloc_page_interleave(gfp, 0, nid);
1378 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001379 zl = zonelist_policy(gfp, pol);
1380 if (pol != &default_policy && pol != current->mempolicy) {
1381 /*
1382 * slow path: ref counted policy -- shared or vma
1383 */
Mel Gorman19770b32008-04-28 02:12:18 -07001384 struct page *page = __alloc_pages_nodemask(gfp, 0,
1385 zl, nodemask_policy(gfp, pol));
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001386 __mpol_free(pol);
1387 return page;
1388 }
1389 /*
1390 * fast path: default or task policy
1391 */
Mel Gorman19770b32008-04-28 02:12:18 -07001392 return __alloc_pages_nodemask(gfp, 0, zl, nodemask_policy(gfp, pol));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
1395/**
1396 * alloc_pages_current - Allocate pages.
1397 *
1398 * @gfp:
1399 * %GFP_USER user allocation,
1400 * %GFP_KERNEL kernel allocation,
1401 * %GFP_HIGHMEM highmem allocation,
1402 * %GFP_FS don't call back into a file system.
1403 * %GFP_ATOMIC don't sleep.
1404 * @order: Power of two of allocation size in pages. 0 is a single page.
1405 *
1406 * Allocate a page from the kernel page pool. When not in
1407 * interrupt context and apply the current process NUMA policy.
1408 * Returns NULL when no page can be allocated.
1409 *
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001410 * Don't call cpuset_update_task_memory_state() unless
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * 1) it's ok to take cpuset_sem (can WAIT), and
1412 * 2) allocating for current task (not interrupt).
1413 */
Al Virodd0fc662005-10-07 07:46:04 +01001414struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 struct mempolicy *pol = current->mempolicy;
1417
1418 if ((gfp & __GFP_WAIT) && !in_interrupt())
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001419 cpuset_update_task_memory_state();
Christoph Lameter9b819d22006-09-25 23:31:40 -07001420 if (!pol || in_interrupt() || (gfp & __GFP_THISNODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 pol = &default_policy;
1422 if (pol->policy == MPOL_INTERLEAVE)
1423 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
Mel Gorman19770b32008-04-28 02:12:18 -07001424 return __alloc_pages_nodemask(gfp, order,
1425 zonelist_policy(gfp, pol), nodemask_policy(gfp, pol));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427EXPORT_SYMBOL(alloc_pages_current);
1428
Paul Jackson42253992006-01-08 01:01:59 -08001429/*
1430 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1431 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1432 * with the mems_allowed returned by cpuset_mems_allowed(). This
1433 * keeps mempolicies cpuset relative after its cpuset moves. See
1434 * further kernel/cpuset.c update_nodemask().
1435 */
Paul Jackson42253992006-01-08 01:01:59 -08001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437/* Slow path of a mempolicy copy */
1438struct mempolicy *__mpol_copy(struct mempolicy *old)
1439{
1440 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1441
1442 if (!new)
1443 return ERR_PTR(-ENOMEM);
Paul Jackson42253992006-01-08 01:01:59 -08001444 if (current_cpuset_is_being_rebound()) {
1445 nodemask_t mems = cpuset_mems_allowed(current);
1446 mpol_rebind_policy(old, &mems);
1447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 *new = *old;
1449 atomic_set(&new->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return new;
1451}
1452
1453/* Slow path of a mempolicy comparison */
1454int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1455{
1456 if (!a || !b)
1457 return 0;
1458 if (a->policy != b->policy)
1459 return 0;
1460 switch (a->policy) {
1461 case MPOL_DEFAULT:
1462 return 1;
Mel Gorman19770b32008-04-28 02:12:18 -07001463 case MPOL_BIND:
1464 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001466 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 case MPOL_PREFERRED:
1468 return a->v.preferred_node == b->v.preferred_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 default:
1470 BUG();
1471 return 0;
1472 }
1473}
1474
1475/* Slow path of a mpol destructor. */
1476void __mpol_free(struct mempolicy *p)
1477{
1478 if (!atomic_dec_and_test(&p->refcnt))
1479 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 p->policy = MPOL_DEFAULT;
1481 kmem_cache_free(policy_cache, p);
1482}
1483
1484/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 * Shared memory backing store policy support.
1486 *
1487 * Remember policies even when nobody has shared memory mapped.
1488 * The policies are kept in Red-Black tree linked from the inode.
1489 * They are protected by the sp->lock spinlock, which should be held
1490 * for any accesses to the tree.
1491 */
1492
1493/* lookup first element intersecting start-end */
1494/* Caller holds sp->lock */
1495static struct sp_node *
1496sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1497{
1498 struct rb_node *n = sp->root.rb_node;
1499
1500 while (n) {
1501 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1502
1503 if (start >= p->end)
1504 n = n->rb_right;
1505 else if (end <= p->start)
1506 n = n->rb_left;
1507 else
1508 break;
1509 }
1510 if (!n)
1511 return NULL;
1512 for (;;) {
1513 struct sp_node *w = NULL;
1514 struct rb_node *prev = rb_prev(n);
1515 if (!prev)
1516 break;
1517 w = rb_entry(prev, struct sp_node, nd);
1518 if (w->end <= start)
1519 break;
1520 n = prev;
1521 }
1522 return rb_entry(n, struct sp_node, nd);
1523}
1524
1525/* Insert a new shared policy into the list. */
1526/* Caller holds sp->lock */
1527static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1528{
1529 struct rb_node **p = &sp->root.rb_node;
1530 struct rb_node *parent = NULL;
1531 struct sp_node *nd;
1532
1533 while (*p) {
1534 parent = *p;
1535 nd = rb_entry(parent, struct sp_node, nd);
1536 if (new->start < nd->start)
1537 p = &(*p)->rb_left;
1538 else if (new->end > nd->end)
1539 p = &(*p)->rb_right;
1540 else
1541 BUG();
1542 }
1543 rb_link_node(&new->nd, parent, p);
1544 rb_insert_color(&new->nd, &sp->root);
Paul Mundt140d5a42007-07-15 23:38:16 -07001545 pr_debug("inserting %lx-%lx: %d\n", new->start, new->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 new->policy ? new->policy->policy : 0);
1547}
1548
1549/* Find shared policy intersecting idx */
1550struct mempolicy *
1551mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1552{
1553 struct mempolicy *pol = NULL;
1554 struct sp_node *sn;
1555
1556 if (!sp->root.rb_node)
1557 return NULL;
1558 spin_lock(&sp->lock);
1559 sn = sp_lookup(sp, idx, idx+1);
1560 if (sn) {
1561 mpol_get(sn->policy);
1562 pol = sn->policy;
1563 }
1564 spin_unlock(&sp->lock);
1565 return pol;
1566}
1567
1568static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1569{
Paul Mundt140d5a42007-07-15 23:38:16 -07001570 pr_debug("deleting %lx-l%lx\n", n->start, n->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 rb_erase(&n->nd, &sp->root);
1572 mpol_free(n->policy);
1573 kmem_cache_free(sn_cache, n);
1574}
1575
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001576static struct sp_node *sp_alloc(unsigned long start, unsigned long end,
1577 struct mempolicy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1580
1581 if (!n)
1582 return NULL;
1583 n->start = start;
1584 n->end = end;
1585 mpol_get(pol);
1586 n->policy = pol;
1587 return n;
1588}
1589
1590/* Replace a policy range. */
1591static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1592 unsigned long end, struct sp_node *new)
1593{
1594 struct sp_node *n, *new2 = NULL;
1595
1596restart:
1597 spin_lock(&sp->lock);
1598 n = sp_lookup(sp, start, end);
1599 /* Take care of old policies in the same range. */
1600 while (n && n->start < end) {
1601 struct rb_node *next = rb_next(&n->nd);
1602 if (n->start >= start) {
1603 if (n->end <= end)
1604 sp_delete(sp, n);
1605 else
1606 n->start = end;
1607 } else {
1608 /* Old policy spanning whole new range. */
1609 if (n->end > end) {
1610 if (!new2) {
1611 spin_unlock(&sp->lock);
1612 new2 = sp_alloc(end, n->end, n->policy);
1613 if (!new2)
1614 return -ENOMEM;
1615 goto restart;
1616 }
1617 n->end = start;
1618 sp_insert(sp, new2);
1619 new2 = NULL;
1620 break;
1621 } else
1622 n->end = start;
1623 }
1624 if (!next)
1625 break;
1626 n = rb_entry(next, struct sp_node, nd);
1627 }
1628 if (new)
1629 sp_insert(sp, new);
1630 spin_unlock(&sp->lock);
1631 if (new2) {
1632 mpol_free(new2->policy);
1633 kmem_cache_free(sn_cache, new2);
1634 }
1635 return 0;
1636}
1637
Robin Holt7339ff82006-01-14 13:20:48 -08001638void mpol_shared_policy_init(struct shared_policy *info, int policy,
1639 nodemask_t *policy_nodes)
1640{
1641 info->root = RB_ROOT;
1642 spin_lock_init(&info->lock);
1643
1644 if (policy != MPOL_DEFAULT) {
1645 struct mempolicy *newpol;
1646
1647 /* Falls back to MPOL_DEFAULT on any error */
1648 newpol = mpol_new(policy, policy_nodes);
1649 if (!IS_ERR(newpol)) {
1650 /* Create pseudo-vma that contains just the policy */
1651 struct vm_area_struct pvma;
1652
1653 memset(&pvma, 0, sizeof(struct vm_area_struct));
1654 /* Policy covers entire file */
1655 pvma.vm_end = TASK_SIZE;
1656 mpol_set_shared_policy(info, &pvma, newpol);
1657 mpol_free(newpol);
1658 }
1659 }
1660}
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662int mpol_set_shared_policy(struct shared_policy *info,
1663 struct vm_area_struct *vma, struct mempolicy *npol)
1664{
1665 int err;
1666 struct sp_node *new = NULL;
1667 unsigned long sz = vma_pages(vma);
1668
Paul Mundt140d5a42007-07-15 23:38:16 -07001669 pr_debug("set_shared_policy %lx sz %lu %d %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 vma->vm_pgoff,
1671 sz, npol? npol->policy : -1,
Paul Mundt140d5a42007-07-15 23:38:16 -07001672 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 if (npol) {
1675 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1676 if (!new)
1677 return -ENOMEM;
1678 }
1679 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1680 if (err && new)
1681 kmem_cache_free(sn_cache, new);
1682 return err;
1683}
1684
1685/* Free a backing policy store on inode delete. */
1686void mpol_free_shared_policy(struct shared_policy *p)
1687{
1688 struct sp_node *n;
1689 struct rb_node *next;
1690
1691 if (!p->root.rb_node)
1692 return;
1693 spin_lock(&p->lock);
1694 next = rb_first(&p->root);
1695 while (next) {
1696 n = rb_entry(next, struct sp_node, nd);
1697 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001698 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 mpol_free(n->policy);
1700 kmem_cache_free(sn_cache, n);
1701 }
1702 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
1705/* assumes fs == KERNEL_DS */
1706void __init numa_policy_init(void)
1707{
Paul Mundtb71636e2007-07-15 23:38:15 -07001708 nodemask_t interleave_nodes;
1709 unsigned long largest = 0;
1710 int nid, prefer = 0;
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 policy_cache = kmem_cache_create("numa_policy",
1713 sizeof(struct mempolicy),
Paul Mundt20c2df82007-07-20 10:11:58 +09001714 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 sn_cache = kmem_cache_create("shared_policy_node",
1717 sizeof(struct sp_node),
Paul Mundt20c2df82007-07-20 10:11:58 +09001718 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Paul Mundtb71636e2007-07-15 23:38:15 -07001720 /*
1721 * Set interleaving policy for system init. Interleaving is only
1722 * enabled across suitably sized nodes (default is >= 16MB), or
1723 * fall back to the largest node if they're all smaller.
1724 */
1725 nodes_clear(interleave_nodes);
Christoph Lameter56bbd652007-10-16 01:25:35 -07001726 for_each_node_state(nid, N_HIGH_MEMORY) {
Paul Mundtb71636e2007-07-15 23:38:15 -07001727 unsigned long total_pages = node_present_pages(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Paul Mundtb71636e2007-07-15 23:38:15 -07001729 /* Preserve the largest node */
1730 if (largest < total_pages) {
1731 largest = total_pages;
1732 prefer = nid;
1733 }
1734
1735 /* Interleave this node? */
1736 if ((total_pages << PAGE_SHIFT) >= (16 << 20))
1737 node_set(nid, interleave_nodes);
1738 }
1739
1740 /* All too small, use the largest */
1741 if (unlikely(nodes_empty(interleave_nodes)))
1742 node_set(prefer, interleave_nodes);
1743
1744 if (do_set_mempolicy(MPOL_INTERLEAVE, &interleave_nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 printk("numa_policy_init: interleaving failed\n");
1746}
1747
Christoph Lameter8bccd852005-10-29 18:16:59 -07001748/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749void numa_default_policy(void)
1750{
Christoph Lameter8bccd852005-10-29 18:16:59 -07001751 do_set_mempolicy(MPOL_DEFAULT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
Paul Jackson68860ec2005-10-30 15:02:36 -08001753
1754/* Migrate a policy to a different set of nodes */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001755static void mpol_rebind_policy(struct mempolicy *pol,
1756 const nodemask_t *newmask)
Paul Jackson68860ec2005-10-30 15:02:36 -08001757{
Paul Jackson74cb2152006-01-08 01:01:56 -08001758 nodemask_t *mpolmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001759 nodemask_t tmp;
1760
1761 if (!pol)
1762 return;
Paul Jackson74cb2152006-01-08 01:01:56 -08001763 mpolmask = &pol->cpuset_mems_allowed;
1764 if (nodes_equal(*mpolmask, *newmask))
1765 return;
Paul Jackson68860ec2005-10-30 15:02:36 -08001766
1767 switch (pol->policy) {
1768 case MPOL_DEFAULT:
1769 break;
Mel Gorman19770b32008-04-28 02:12:18 -07001770 case MPOL_BIND:
1771 /* Fall through */
Paul Jackson68860ec2005-10-30 15:02:36 -08001772 case MPOL_INTERLEAVE:
Paul Jackson74cb2152006-01-08 01:01:56 -08001773 nodes_remap(tmp, pol->v.nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001774 pol->v.nodes = tmp;
Paul Jackson74cb2152006-01-08 01:01:56 -08001775 *mpolmask = *newmask;
1776 current->il_next = node_remap(current->il_next,
1777 *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001778 break;
1779 case MPOL_PREFERRED:
1780 pol->v.preferred_node = node_remap(pol->v.preferred_node,
Paul Jackson74cb2152006-01-08 01:01:56 -08001781 *mpolmask, *newmask);
1782 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001783 break;
Paul Jackson68860ec2005-10-30 15:02:36 -08001784 default:
1785 BUG();
1786 break;
1787 }
1788}
1789
1790/*
Paul Jackson74cb2152006-01-08 01:01:56 -08001791 * Wrapper for mpol_rebind_policy() that just requires task
1792 * pointer, and updates task mempolicy.
Paul Jackson68860ec2005-10-30 15:02:36 -08001793 */
Paul Jackson74cb2152006-01-08 01:01:56 -08001794
1795void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new)
Paul Jackson68860ec2005-10-30 15:02:36 -08001796{
Paul Jackson74cb2152006-01-08 01:01:56 -08001797 mpol_rebind_policy(tsk->mempolicy, new);
Paul Jackson68860ec2005-10-30 15:02:36 -08001798}
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001799
1800/*
Paul Jackson42253992006-01-08 01:01:59 -08001801 * Rebind each vma in mm to new nodemask.
1802 *
1803 * Call holding a reference to mm. Takes mm->mmap_sem during call.
1804 */
1805
1806void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
1807{
1808 struct vm_area_struct *vma;
1809
1810 down_write(&mm->mmap_sem);
1811 for (vma = mm->mmap; vma; vma = vma->vm_next)
1812 mpol_rebind_policy(vma->vm_policy, new);
1813 up_write(&mm->mmap_sem);
1814}
1815
1816/*
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001817 * Display pages allocated per node and memory policy via /proc.
1818 */
1819
Helge Deller15ad7cd2006-12-06 20:40:36 -08001820static const char * const policy_types[] =
1821 { "default", "prefer", "bind", "interleave" };
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001822
1823/*
1824 * Convert a mempolicy into a string.
1825 * Returns the number of characters in buffer (if positive)
1826 * or an error (negative)
1827 */
1828static inline int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol)
1829{
1830 char *p = buffer;
1831 int l;
1832 nodemask_t nodes;
1833 int mode = pol ? pol->policy : MPOL_DEFAULT;
1834
1835 switch (mode) {
1836 case MPOL_DEFAULT:
1837 nodes_clear(nodes);
1838 break;
1839
1840 case MPOL_PREFERRED:
1841 nodes_clear(nodes);
1842 node_set(pol->v.preferred_node, nodes);
1843 break;
1844
1845 case MPOL_BIND:
Mel Gorman19770b32008-04-28 02:12:18 -07001846 /* Fall through */
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001847 case MPOL_INTERLEAVE:
1848 nodes = pol->v.nodes;
1849 break;
1850
1851 default:
1852 BUG();
1853 return -EFAULT;
1854 }
1855
1856 l = strlen(policy_types[mode]);
1857 if (buffer + maxlen < p + l + 1)
1858 return -ENOSPC;
1859
1860 strcpy(p, policy_types[mode]);
1861 p += l;
1862
1863 if (!nodes_empty(nodes)) {
1864 if (buffer + maxlen < p + 2)
1865 return -ENOSPC;
1866 *p++ = '=';
1867 p += nodelist_scnprintf(p, buffer + maxlen - p, nodes);
1868 }
1869 return p - buffer;
1870}
1871
1872struct numa_maps {
1873 unsigned long pages;
1874 unsigned long anon;
Christoph Lameter397874d2006-03-06 15:42:53 -08001875 unsigned long active;
1876 unsigned long writeback;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001877 unsigned long mapcount_max;
Christoph Lameter397874d2006-03-06 15:42:53 -08001878 unsigned long dirty;
1879 unsigned long swapcache;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001880 unsigned long node[MAX_NUMNODES];
1881};
1882
Christoph Lameter397874d2006-03-06 15:42:53 -08001883static void gather_stats(struct page *page, void *private, int pte_dirty)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001884{
1885 struct numa_maps *md = private;
1886 int count = page_mapcount(page);
1887
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001888 md->pages++;
Christoph Lameter397874d2006-03-06 15:42:53 -08001889 if (pte_dirty || PageDirty(page))
1890 md->dirty++;
1891
1892 if (PageSwapCache(page))
1893 md->swapcache++;
1894
1895 if (PageActive(page))
1896 md->active++;
1897
1898 if (PageWriteback(page))
1899 md->writeback++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001900
1901 if (PageAnon(page))
1902 md->anon++;
1903
Christoph Lameter397874d2006-03-06 15:42:53 -08001904 if (count > md->mapcount_max)
1905 md->mapcount_max = count;
1906
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001907 md->node[page_to_nid(page)]++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001908}
1909
Andrew Morton7f709ed2006-03-07 21:55:22 -08001910#ifdef CONFIG_HUGETLB_PAGE
Christoph Lameter397874d2006-03-06 15:42:53 -08001911static void check_huge_range(struct vm_area_struct *vma,
1912 unsigned long start, unsigned long end,
1913 struct numa_maps *md)
1914{
1915 unsigned long addr;
1916 struct page *page;
1917
1918 for (addr = start; addr < end; addr += HPAGE_SIZE) {
1919 pte_t *ptep = huge_pte_offset(vma->vm_mm, addr & HPAGE_MASK);
1920 pte_t pte;
1921
1922 if (!ptep)
1923 continue;
1924
1925 pte = *ptep;
1926 if (pte_none(pte))
1927 continue;
1928
1929 page = pte_page(pte);
1930 if (!page)
1931 continue;
1932
1933 gather_stats(page, md, pte_dirty(*ptep));
1934 }
1935}
Andrew Morton7f709ed2006-03-07 21:55:22 -08001936#else
1937static inline void check_huge_range(struct vm_area_struct *vma,
1938 unsigned long start, unsigned long end,
1939 struct numa_maps *md)
1940{
1941}
1942#endif
Christoph Lameter397874d2006-03-06 15:42:53 -08001943
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001944int show_numa_map(struct seq_file *m, void *v)
1945{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001946 struct proc_maps_private *priv = m->private;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001947 struct vm_area_struct *vma = v;
1948 struct numa_maps *md;
Christoph Lameter397874d2006-03-06 15:42:53 -08001949 struct file *file = vma->vm_file;
1950 struct mm_struct *mm = vma->vm_mm;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001951 struct mempolicy *pol;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001952 int n;
1953 char buffer[50];
1954
Christoph Lameter397874d2006-03-06 15:42:53 -08001955 if (!mm)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001956 return 0;
1957
1958 md = kzalloc(sizeof(struct numa_maps), GFP_KERNEL);
1959 if (!md)
1960 return 0;
1961
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001962 pol = get_vma_policy(priv->task, vma, vma->vm_start);
1963 mpol_to_str(buffer, sizeof(buffer), pol);
1964 /*
1965 * unref shared or other task's mempolicy
1966 */
1967 if (pol != &default_policy && pol != current->mempolicy)
1968 __mpol_free(pol);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001969
Christoph Lameter397874d2006-03-06 15:42:53 -08001970 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001971
Christoph Lameter397874d2006-03-06 15:42:53 -08001972 if (file) {
1973 seq_printf(m, " file=");
Jan Blunckc32c2f62008-02-14 19:38:43 -08001974 seq_path(m, &file->f_path, "\n\t= ");
Christoph Lameter397874d2006-03-06 15:42:53 -08001975 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
1976 seq_printf(m, " heap");
1977 } else if (vma->vm_start <= mm->start_stack &&
1978 vma->vm_end >= mm->start_stack) {
1979 seq_printf(m, " stack");
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001980 }
Christoph Lameter397874d2006-03-06 15:42:53 -08001981
1982 if (is_vm_hugetlb_page(vma)) {
1983 check_huge_range(vma, vma->vm_start, vma->vm_end, md);
1984 seq_printf(m, " huge");
1985 } else {
1986 check_pgd_range(vma, vma->vm_start, vma->vm_end,
Christoph Lameter56bbd652007-10-16 01:25:35 -07001987 &node_states[N_HIGH_MEMORY], MPOL_MF_STATS, md);
Christoph Lameter397874d2006-03-06 15:42:53 -08001988 }
1989
1990 if (!md->pages)
1991 goto out;
1992
1993 if (md->anon)
1994 seq_printf(m," anon=%lu",md->anon);
1995
1996 if (md->dirty)
1997 seq_printf(m," dirty=%lu",md->dirty);
1998
1999 if (md->pages != md->anon && md->pages != md->dirty)
2000 seq_printf(m, " mapped=%lu", md->pages);
2001
2002 if (md->mapcount_max > 1)
2003 seq_printf(m, " mapmax=%lu", md->mapcount_max);
2004
2005 if (md->swapcache)
2006 seq_printf(m," swapcache=%lu", md->swapcache);
2007
2008 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
2009 seq_printf(m," active=%lu", md->active);
2010
2011 if (md->writeback)
2012 seq_printf(m," writeback=%lu", md->writeback);
2013
Christoph Lameter56bbd652007-10-16 01:25:35 -07002014 for_each_node_state(n, N_HIGH_MEMORY)
Christoph Lameter397874d2006-03-06 15:42:53 -08002015 if (md->node[n])
2016 seq_printf(m, " N%d=%lu", n, md->node[n]);
2017out:
2018 seq_putc(m, '\n');
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002019 kfree(md);
2020
2021 if (m->count < m->size)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002022 m->version = (vma != priv->tail_vma) ? vma->vm_start : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002023 return 0;
2024}