blob: 90193a2a915b0fb3b359971682cf8bb6ebf1e842 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* Generate a custom zonelist for the BIND policy. */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700167static struct zonelist *bind_zonelist(nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct zonelist *zl;
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700170 int num, max, nd;
171 enum zone_type k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Andi Kleendfcd3c02005-10-29 18:15:48 -0700173 max = 1 + MAX_NR_ZONES * nodes_weight(*nodes);
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800174 max++; /* space for zlcache_ptr (see mmzone.h) */
Andi Kleendd942ae2006-02-17 01:39:16 +0100175 zl = kmalloc(sizeof(struct zone *) * max, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (!zl)
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800177 return ERR_PTR(-ENOMEM);
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800178 zl->zlcache_ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 num = 0;
Andi Kleendd942ae2006-02-17 01:39:16 +0100180 /* First put in the highest zones from all nodes, then all the next
181 lower zones etc. Avoid empty zones because the memory allocator
182 doesn't like them. If you implement node hot removal you
183 have to fix that. */
Mel Gormanb377fd32007-08-22 14:02:05 -0700184 k = MAX_NR_ZONES - 1;
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700185 while (1) {
Andi Kleendd942ae2006-02-17 01:39:16 +0100186 for_each_node_mask(nd, *nodes) {
187 struct zone *z = &NODE_DATA(nd)->node_zones[k];
188 if (z->present_pages > 0)
Mel Gormandd1a2392008-04-28 02:12:17 -0700189 zoneref_set_zone(z, &zl->_zonerefs[num++]);
Andi Kleendd942ae2006-02-17 01:39:16 +0100190 }
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700191 if (k == 0)
192 break;
193 k--;
Andi Kleendd942ae2006-02-17 01:39:16 +0100194 }
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800195 if (num == 0) {
196 kfree(zl);
197 return ERR_PTR(-EINVAL);
198 }
Mel Gormandd1a2392008-04-28 02:12:17 -0700199 zl->_zonerefs[num].zone = NULL;
200 zl->_zonerefs[num].zone_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return zl;
202}
203
204/* Create a new policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700205static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct mempolicy *policy;
208
Paul Mundt140d5a42007-07-15 23:38:16 -0700209 pr_debug("setting mode %d nodes[0] %lx\n",
210 mode, nodes ? nodes_addr(*nodes)[0] : -1);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (mode == MPOL_DEFAULT)
213 return NULL;
214 policy = kmem_cache_alloc(policy_cache, GFP_KERNEL);
215 if (!policy)
216 return ERR_PTR(-ENOMEM);
217 atomic_set(&policy->refcnt, 1);
218 switch (mode) {
219 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700220 policy->v.nodes = *nodes;
Christoph Lameter6eaf8062007-10-16 01:25:30 -0700221 if (nodes_weight(policy->v.nodes) == 0) {
Andi Kleen8f493d72006-01-03 00:07:28 +0100222 kmem_cache_free(policy_cache, policy);
223 return ERR_PTR(-EINVAL);
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
226 case MPOL_PREFERRED:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700227 policy->v.preferred_node = first_node(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (policy->v.preferred_node >= MAX_NUMNODES)
229 policy->v.preferred_node = -1;
230 break;
231 case MPOL_BIND:
232 policy->v.zonelist = bind_zonelist(nodes);
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800233 if (IS_ERR(policy->v.zonelist)) {
234 void *error_code = policy->v.zonelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 kmem_cache_free(policy_cache, policy);
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -0800236 return error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238 break;
239 }
240 policy->policy = mode;
Paul Jackson74cb2152006-01-08 01:01:56 -0800241 policy->cpuset_mems_allowed = cpuset_mems_allowed(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return policy;
243}
244
Christoph Lameter397874d2006-03-06 15:42:53 -0800245static void gather_stats(struct page *, void *, int pte_dirty);
Christoph Lameterfc301282006-01-18 17:42:29 -0800246static void migrate_page_add(struct page *page, struct list_head *pagelist,
247 unsigned long flags);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800248
Christoph Lameter38e35862006-01-08 01:01:01 -0800249/* Scan through pages checking if pages follow certain conditions. */
Nick Pigginb5810032005-10-29 18:16:12 -0700250static int check_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800251 unsigned long addr, unsigned long end,
252 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800253 void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Hugh Dickins91612e02005-06-21 17:15:07 -0700255 pte_t *orig_pte;
256 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700257 spinlock_t *ptl;
Hugh Dickins941150a2005-06-21 17:15:06 -0700258
Hugh Dickins705e87c2005-10-29 18:16:27 -0700259 orig_pte = pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700260 do {
Linus Torvalds6aab3412005-11-28 14:34:23 -0800261 struct page *page;
Andy Whitcroft25ba77c2006-12-06 20:33:03 -0800262 int nid;
Hugh Dickins91612e02005-06-21 17:15:07 -0700263
264 if (!pte_present(*pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800266 page = vm_normal_page(vma, addr, *pte);
267 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 continue;
Nick Piggin053837f2006-01-18 17:42:27 -0800269 /*
270 * The check for PageReserved here is important to avoid
271 * handling zero pages and other pages that may have been
272 * marked special by the system.
273 *
274 * If the PageReserved would not be checked here then f.e.
275 * the location of the zero page could have an influence
276 * on MPOL_MF_STRICT, zero pages would be counted for
277 * the per node stats, and there would be useless attempts
278 * to put zero pages on the migration list.
279 */
Christoph Lameterf4598c82006-01-12 01:05:20 -0800280 if (PageReserved(page))
281 continue;
Linus Torvalds6aab3412005-11-28 14:34:23 -0800282 nid = page_to_nid(page);
Christoph Lameter38e35862006-01-08 01:01:01 -0800283 if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT))
284 continue;
285
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800286 if (flags & MPOL_MF_STATS)
Christoph Lameter397874d2006-03-06 15:42:53 -0800287 gather_stats(page, private, pte_dirty(*pte));
Nick Piggin053837f2006-01-18 17:42:27 -0800288 else if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
Christoph Lameterfc301282006-01-18 17:42:29 -0800289 migrate_page_add(page, private, flags);
Christoph Lameter38e35862006-01-08 01:01:01 -0800290 else
291 break;
Hugh Dickins91612e02005-06-21 17:15:07 -0700292 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700293 pte_unmap_unlock(orig_pte, ptl);
Hugh Dickins91612e02005-06-21 17:15:07 -0700294 return addr != end;
295}
296
Nick Pigginb5810032005-10-29 18:16:12 -0700297static inline int check_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800298 unsigned long addr, unsigned long end,
299 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800300 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700301{
302 pmd_t *pmd;
303 unsigned long next;
304
305 pmd = pmd_offset(pud, addr);
306 do {
307 next = pmd_addr_end(addr, end);
308 if (pmd_none_or_clear_bad(pmd))
309 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800310 if (check_pte_range(vma, pmd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800311 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700312 return -EIO;
313 } while (pmd++, addr = next, addr != end);
314 return 0;
315}
316
Nick Pigginb5810032005-10-29 18:16:12 -0700317static inline int check_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800318 unsigned long addr, unsigned long end,
319 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800320 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700321{
322 pud_t *pud;
323 unsigned long next;
324
325 pud = pud_offset(pgd, addr);
326 do {
327 next = pud_addr_end(addr, end);
328 if (pud_none_or_clear_bad(pud))
329 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800330 if (check_pmd_range(vma, pud, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800331 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700332 return -EIO;
333 } while (pud++, addr = next, addr != end);
334 return 0;
335}
336
Nick Pigginb5810032005-10-29 18:16:12 -0700337static inline int check_pgd_range(struct vm_area_struct *vma,
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800338 unsigned long addr, unsigned long end,
339 const nodemask_t *nodes, unsigned long flags,
Christoph Lameter38e35862006-01-08 01:01:01 -0800340 void *private)
Hugh Dickins91612e02005-06-21 17:15:07 -0700341{
342 pgd_t *pgd;
343 unsigned long next;
344
Nick Pigginb5810032005-10-29 18:16:12 -0700345 pgd = pgd_offset(vma->vm_mm, addr);
Hugh Dickins91612e02005-06-21 17:15:07 -0700346 do {
347 next = pgd_addr_end(addr, end);
348 if (pgd_none_or_clear_bad(pgd))
349 continue;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800350 if (check_pud_range(vma, pgd, addr, next, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800351 flags, private))
Hugh Dickins91612e02005-06-21 17:15:07 -0700352 return -EIO;
353 } while (pgd++, addr = next, addr != end);
354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800357/*
358 * Check if all pages in a range are on a set of nodes.
359 * If pagelist != NULL then isolate pages from the LRU and
360 * put them on the pagelist.
361 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362static struct vm_area_struct *
363check_range(struct mm_struct *mm, unsigned long start, unsigned long end,
Christoph Lameter38e35862006-01-08 01:01:01 -0800364 const nodemask_t *nodes, unsigned long flags, void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 int err;
367 struct vm_area_struct *first, *vma, *prev;
368
Christoph Lameter90036ee2006-03-16 23:03:59 -0800369 if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) {
Christoph Lameter90036ee2006-03-16 23:03:59 -0800370
Christoph Lameterb20a3502006-03-22 00:09:12 -0800371 err = migrate_prep();
372 if (err)
373 return ERR_PTR(err);
Christoph Lameter90036ee2006-03-16 23:03:59 -0800374 }
Nick Piggin053837f2006-01-18 17:42:27 -0800375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 first = find_vma(mm, start);
377 if (!first)
378 return ERR_PTR(-EFAULT);
379 prev = NULL;
380 for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800381 if (!(flags & MPOL_MF_DISCONTIG_OK)) {
382 if (!vma->vm_next && vma->vm_end < end)
383 return ERR_PTR(-EFAULT);
384 if (prev && prev->vm_end < vma->vm_start)
385 return ERR_PTR(-EFAULT);
386 }
387 if (!is_vm_hugetlb_page(vma) &&
388 ((flags & MPOL_MF_STRICT) ||
389 ((flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) &&
390 vma_migratable(vma)))) {
Andi Kleen5b952b32005-09-13 01:25:08 -0700391 unsigned long endvma = vma->vm_end;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800392
Andi Kleen5b952b32005-09-13 01:25:08 -0700393 if (endvma > end)
394 endvma = end;
395 if (vma->vm_start > start)
396 start = vma->vm_start;
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -0800397 err = check_pgd_range(vma, start, endvma, nodes,
Christoph Lameter38e35862006-01-08 01:01:01 -0800398 flags, private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (err) {
400 first = ERR_PTR(err);
401 break;
402 }
403 }
404 prev = vma;
405 }
406 return first;
407}
408
409/* Apply policy to a single VMA */
410static int policy_vma(struct vm_area_struct *vma, struct mempolicy *new)
411{
412 int err = 0;
413 struct mempolicy *old = vma->vm_policy;
414
Paul Mundt140d5a42007-07-15 23:38:16 -0700415 pr_debug("vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 vma->vm_start, vma->vm_end, vma->vm_pgoff,
417 vma->vm_ops, vma->vm_file,
418 vma->vm_ops ? vma->vm_ops->set_policy : NULL);
419
420 if (vma->vm_ops && vma->vm_ops->set_policy)
421 err = vma->vm_ops->set_policy(vma, new);
422 if (!err) {
423 mpol_get(new);
424 vma->vm_policy = new;
425 mpol_free(old);
426 }
427 return err;
428}
429
430/* Step 2: apply policy to a range and do splits. */
431static int mbind_range(struct vm_area_struct *vma, unsigned long start,
432 unsigned long end, struct mempolicy *new)
433{
434 struct vm_area_struct *next;
435 int err;
436
437 err = 0;
438 for (; vma && vma->vm_start < end; vma = next) {
439 next = vma->vm_next;
440 if (vma->vm_start < start)
441 err = split_vma(vma->vm_mm, vma, start, 1);
442 if (!err && vma->vm_end > end)
443 err = split_vma(vma->vm_mm, vma, end, 0);
444 if (!err)
445 err = policy_vma(vma, new);
446 if (err)
447 break;
448 }
449 return err;
450}
451
Paul Jacksonc61afb12006-03-24 03:16:08 -0800452/*
453 * Update task->flags PF_MEMPOLICY bit: set iff non-default
454 * mempolicy. Allows more rapid checking of this (combined perhaps
455 * with other PF_* flag bits) on memory allocation hot code paths.
456 *
457 * If called from outside this file, the task 'p' should -only- be
458 * a newly forked child not yet visible on the task list, because
459 * manipulating the task flags of a visible task is not safe.
460 *
461 * The above limitation is why this routine has the funny name
462 * mpol_fix_fork_child_flag().
463 *
464 * It is also safe to call this with a task pointer of current,
465 * which the static wrapper mpol_set_task_struct_flag() does,
466 * for use within this file.
467 */
468
469void mpol_fix_fork_child_flag(struct task_struct *p)
470{
471 if (p->mempolicy)
472 p->flags |= PF_MEMPOLICY;
473 else
474 p->flags &= ~PF_MEMPOLICY;
475}
476
477static void mpol_set_task_struct_flag(void)
478{
479 mpol_fix_fork_child_flag(current);
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/* Set the process memory policy */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700483static long do_set_mempolicy(int mode, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct mempolicy *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
KOSAKI Motohiro31f1de42008-02-12 13:30:22 +0900487 if (mpol_check_policy(mode, nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700489 new = mpol_new(mode, nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (IS_ERR(new))
491 return PTR_ERR(new);
492 mpol_free(current->mempolicy);
493 current->mempolicy = new;
Paul Jacksonc61afb12006-03-24 03:16:08 -0800494 mpol_set_task_struct_flag();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (new && new->policy == MPOL_INTERLEAVE)
Andi Kleendfcd3c02005-10-29 18:15:48 -0700496 current->il_next = first_node(new->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
498}
499
500/* Fill a zone bitmap for a policy */
Andi Kleendfcd3c02005-10-29 18:15:48 -0700501static void get_zonemask(struct mempolicy *p, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 int i;
504
Andi Kleendfcd3c02005-10-29 18:15:48 -0700505 nodes_clear(*nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 switch (p->policy) {
507 case MPOL_BIND:
Mel Gormandd1a2392008-04-28 02:12:17 -0700508 for (i = 0; p->v.zonelist->_zonerefs[i].zone; i++) {
509 struct zoneref *zref;
510 zref = &p->v.zonelist->_zonerefs[i];
511 node_set(zonelist_node_idx(zref), *nodes);
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 break;
514 case MPOL_DEFAULT:
515 break;
516 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -0700517 *nodes = p->v.nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519 case MPOL_PREFERRED:
Christoph Lameter56bbd652007-10-16 01:25:35 -0700520 /* or use current node instead of memory_map? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (p->v.preferred_node < 0)
Christoph Lameter56bbd652007-10-16 01:25:35 -0700522 *nodes = node_states[N_HIGH_MEMORY];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 else
Andi Kleendfcd3c02005-10-29 18:15:48 -0700524 node_set(p->v.preferred_node, *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526 default:
527 BUG();
528 }
529}
530
531static int lookup_node(struct mm_struct *mm, unsigned long addr)
532{
533 struct page *p;
534 int err;
535
536 err = get_user_pages(current, mm, addr & PAGE_MASK, 1, 0, 0, &p, NULL);
537 if (err >= 0) {
538 err = page_to_nid(p);
539 put_page(p);
540 }
541 return err;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/* Retrieve NUMA policy */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700545static long do_get_mempolicy(int *policy, nodemask_t *nmask,
546 unsigned long addr, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Christoph Lameter8bccd852005-10-29 18:16:59 -0700548 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct mm_struct *mm = current->mm;
550 struct vm_area_struct *vma = NULL;
551 struct mempolicy *pol = current->mempolicy;
552
Paul Jacksoncf2a4732006-01-08 01:01:54 -0800553 cpuset_update_task_memory_state();
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700554 if (flags &
555 ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR|MPOL_F_MEMS_ALLOWED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return -EINVAL;
Lee Schermerhorn754af6f2007-10-16 01:24:51 -0700557
558 if (flags & MPOL_F_MEMS_ALLOWED) {
559 if (flags & (MPOL_F_NODE|MPOL_F_ADDR))
560 return -EINVAL;
561 *policy = 0; /* just so it's initialized */
562 *nmask = cpuset_current_mems_allowed;
563 return 0;
564 }
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (flags & MPOL_F_ADDR) {
567 down_read(&mm->mmap_sem);
568 vma = find_vma_intersection(mm, addr, addr+1);
569 if (!vma) {
570 up_read(&mm->mmap_sem);
571 return -EFAULT;
572 }
573 if (vma->vm_ops && vma->vm_ops->get_policy)
574 pol = vma->vm_ops->get_policy(vma, addr);
575 else
576 pol = vma->vm_policy;
577 } else if (addr)
578 return -EINVAL;
579
580 if (!pol)
581 pol = &default_policy;
582
583 if (flags & MPOL_F_NODE) {
584 if (flags & MPOL_F_ADDR) {
585 err = lookup_node(mm, addr);
586 if (err < 0)
587 goto out;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700588 *policy = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else if (pol == current->mempolicy &&
590 pol->policy == MPOL_INTERLEAVE) {
Christoph Lameter8bccd852005-10-29 18:16:59 -0700591 *policy = current->il_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 } else {
593 err = -EINVAL;
594 goto out;
595 }
596 } else
Christoph Lameter8bccd852005-10-29 18:16:59 -0700597 *policy = pol->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (vma) {
600 up_read(&current->mm->mmap_sem);
601 vma = NULL;
602 }
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 err = 0;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700605 if (nmask)
606 get_zonemask(pol, nmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 out:
609 if (vma)
610 up_read(&current->mm->mmap_sem);
611 return err;
612}
613
Christoph Lameterb20a3502006-03-22 00:09:12 -0800614#ifdef CONFIG_MIGRATION
Christoph Lameter8bccd852005-10-29 18:16:59 -0700615/*
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800616 * page migration
617 */
Christoph Lameterfc301282006-01-18 17:42:29 -0800618static void migrate_page_add(struct page *page, struct list_head *pagelist,
619 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800620{
621 /*
Christoph Lameterfc301282006-01-18 17:42:29 -0800622 * Avoid migrating a page that is shared with others.
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800623 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800624 if ((flags & MPOL_MF_MOVE_ALL) || page_mapcount(page) == 1)
625 isolate_lru_page(page, pagelist);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800626}
627
Christoph Lameter742755a2006-06-23 02:03:55 -0700628static struct page *new_node_page(struct page *page, unsigned long node, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700629{
Mel Gorman769848c2007-07-17 04:03:05 -0700630 return alloc_pages_node(node, GFP_HIGHUSER_MOVABLE, 0);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700631}
632
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800633/*
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800634 * Migrate pages from one node to a target node.
635 * Returns error or the number of pages not migrated.
636 */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700637static int migrate_to_node(struct mm_struct *mm, int source, int dest,
638 int flags)
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800639{
640 nodemask_t nmask;
641 LIST_HEAD(pagelist);
642 int err = 0;
643
644 nodes_clear(nmask);
645 node_set(source, nmask);
646
647 check_range(mm, mm->mmap->vm_start, TASK_SIZE, &nmask,
648 flags | MPOL_MF_DISCONTIG_OK, &pagelist);
649
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700650 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700651 err = migrate_pages(&pagelist, new_node_page, dest);
652
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800653 return err;
654}
655
656/*
657 * Move pages between the two nodesets so as to preserve the physical
658 * layout as much as possible.
Christoph Lameter39743882006-01-08 01:00:51 -0800659 *
660 * Returns the number of page that could not be moved.
661 */
662int do_migrate_pages(struct mm_struct *mm,
663 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
664{
665 LIST_HEAD(pagelist);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800666 int busy = 0;
667 int err = 0;
668 nodemask_t tmp;
Christoph Lameter39743882006-01-08 01:00:51 -0800669
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800670 down_read(&mm->mmap_sem);
Christoph Lameter39743882006-01-08 01:00:51 -0800671
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700672 err = migrate_vmas(mm, from_nodes, to_nodes, flags);
673 if (err)
674 goto out;
675
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800676/*
677 * Find a 'source' bit set in 'tmp' whose corresponding 'dest'
678 * bit in 'to' is not also set in 'tmp'. Clear the found 'source'
679 * bit in 'tmp', and return that <source, dest> pair for migration.
680 * The pair of nodemasks 'to' and 'from' define the map.
681 *
682 * If no pair of bits is found that way, fallback to picking some
683 * pair of 'source' and 'dest' bits that are not the same. If the
684 * 'source' and 'dest' bits are the same, this represents a node
685 * that will be migrating to itself, so no pages need move.
686 *
687 * If no bits are left in 'tmp', or if all remaining bits left
688 * in 'tmp' correspond to the same bit in 'to', return false
689 * (nothing left to migrate).
690 *
691 * This lets us pick a pair of nodes to migrate between, such that
692 * if possible the dest node is not already occupied by some other
693 * source node, minimizing the risk of overloading the memory on a
694 * node that would happen if we migrated incoming memory to a node
695 * before migrating outgoing memory source that same node.
696 *
697 * A single scan of tmp is sufficient. As we go, we remember the
698 * most recent <s, d> pair that moved (s != d). If we find a pair
699 * that not only moved, but what's better, moved to an empty slot
700 * (d is not set in tmp), then we break out then, with that pair.
701 * Otherwise when we finish scannng from_tmp, we at least have the
702 * most recent <s, d> pair that moved. If we get all the way through
703 * the scan of tmp without finding any node that moved, much less
704 * moved to an empty node, then there is nothing left worth migrating.
705 */
Christoph Lameterd4984712006-01-08 01:00:55 -0800706
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800707 tmp = *from_nodes;
708 while (!nodes_empty(tmp)) {
709 int s,d;
710 int source = -1;
711 int dest = 0;
712
713 for_each_node_mask(s, tmp) {
714 d = node_remap(s, *from_nodes, *to_nodes);
715 if (s == d)
716 continue;
717
718 source = s; /* Node moved. Memorize */
719 dest = d;
720
721 /* dest not in remaining from nodes? */
722 if (!node_isset(dest, tmp))
723 break;
724 }
725 if (source == -1)
726 break;
727
728 node_clear(source, tmp);
729 err = migrate_to_node(mm, source, dest, flags);
730 if (err > 0)
731 busy += err;
732 if (err < 0)
733 break;
Christoph Lameter39743882006-01-08 01:00:51 -0800734 }
Christoph Lameter7b2259b2006-06-25 05:46:48 -0700735out:
Christoph Lameter39743882006-01-08 01:00:51 -0800736 up_read(&mm->mmap_sem);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800737 if (err < 0)
738 return err;
739 return busy;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800740
Christoph Lameter39743882006-01-08 01:00:51 -0800741}
742
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800743/*
744 * Allocate a new page for page migration based on vma policy.
745 * Start assuming that page is mapped by vma pointed to by @private.
746 * Search forward from there, if not. N.B., this assumes that the
747 * list of pages handed to migrate_pages()--which is how we get here--
748 * is in virtual address order.
749 */
Christoph Lameter742755a2006-06-23 02:03:55 -0700750static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700751{
752 struct vm_area_struct *vma = (struct vm_area_struct *)private;
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800753 unsigned long uninitialized_var(address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700754
Lee Schermerhorn3ad33b22007-11-14 16:59:10 -0800755 while (vma) {
756 address = page_address_in_vma(page, vma);
757 if (address != -EFAULT)
758 break;
759 vma = vma->vm_next;
760 }
761
762 /*
763 * if !vma, alloc_page_vma() will use task or system default policy
764 */
765 return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700766}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800767#else
768
769static void migrate_page_add(struct page *page, struct list_head *pagelist,
770 unsigned long flags)
771{
772}
773
774int do_migrate_pages(struct mm_struct *mm,
775 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags)
776{
777 return -ENOSYS;
778}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700779
Keith Owens69939742006-10-11 01:21:28 -0700780static struct page *new_vma_page(struct page *page, unsigned long private, int **x)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700781{
782 return NULL;
783}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800784#endif
785
Adrian Bunkdbcb0f12007-10-16 01:26:26 -0700786static long do_mbind(unsigned long start, unsigned long len,
787 unsigned long mode, nodemask_t *nmask,
788 unsigned long flags)
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800789{
790 struct vm_area_struct *vma;
791 struct mm_struct *mm = current->mm;
792 struct mempolicy *new;
793 unsigned long end;
794 int err;
795 LIST_HEAD(pagelist);
796
797 if ((flags & ~(unsigned long)(MPOL_MF_STRICT |
798 MPOL_MF_MOVE | MPOL_MF_MOVE_ALL))
799 || mode > MPOL_MAX)
800 return -EINVAL;
Christoph Lameter74c00242006-03-14 19:50:21 -0800801 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800802 return -EPERM;
803
804 if (start & ~PAGE_MASK)
805 return -EINVAL;
806
807 if (mode == MPOL_DEFAULT)
808 flags &= ~MPOL_MF_STRICT;
809
810 len = (len + PAGE_SIZE - 1) & PAGE_MASK;
811 end = start + len;
812
813 if (end < start)
814 return -EINVAL;
815 if (end == start)
816 return 0;
817
818 if (mpol_check_policy(mode, nmask))
819 return -EINVAL;
820
821 new = mpol_new(mode, nmask);
822 if (IS_ERR(new))
823 return PTR_ERR(new);
824
825 /*
826 * If we are using the default policy then operation
827 * on discontinuous address spaces is okay after all
828 */
829 if (!new)
830 flags |= MPOL_MF_DISCONTIG_OK;
831
Paul Mundt140d5a42007-07-15 23:38:16 -0700832 pr_debug("mbind %lx-%lx mode:%ld nodes:%lx\n",start,start+len,
833 mode, nmask ? nodes_addr(*nmask)[0] : -1);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800834
835 down_write(&mm->mmap_sem);
836 vma = check_range(mm, start, end, nmask,
837 flags | MPOL_MF_INVERT, &pagelist);
838
839 err = PTR_ERR(vma);
840 if (!IS_ERR(vma)) {
841 int nr_failed = 0;
842
843 err = mbind_range(vma, start, end, new);
Christoph Lameter7e2ab152006-02-01 03:05:40 -0800844
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800845 if (!list_empty(&pagelist))
Christoph Lameter95a402c2006-06-23 02:03:53 -0700846 nr_failed = migrate_pages(&pagelist, new_vma_page,
847 (unsigned long)vma);
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800848
849 if (!err && nr_failed && (flags & MPOL_MF_STRICT))
850 err = -EIO;
851 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800852
Christoph Lameter6ce3c4c2006-01-08 01:01:04 -0800853 up_write(&mm->mmap_sem);
854 mpol_free(new);
855 return err;
856}
857
Christoph Lameter39743882006-01-08 01:00:51 -0800858/*
Christoph Lameter8bccd852005-10-29 18:16:59 -0700859 * User space interface with variable sized bitmaps for nodelists.
860 */
861
862/* Copy a node mask from user space. */
Christoph Lameter39743882006-01-08 01:00:51 -0800863static int get_nodes(nodemask_t *nodes, const unsigned long __user *nmask,
Christoph Lameter8bccd852005-10-29 18:16:59 -0700864 unsigned long maxnode)
865{
866 unsigned long k;
867 unsigned long nlongs;
868 unsigned long endmask;
869
870 --maxnode;
871 nodes_clear(*nodes);
872 if (maxnode == 0 || !nmask)
873 return 0;
Andi Kleena9c930b2006-02-20 18:27:59 -0800874 if (maxnode > PAGE_SIZE*BITS_PER_BYTE)
Chris Wright636f13c2006-02-17 13:59:36 -0800875 return -EINVAL;
Christoph Lameter8bccd852005-10-29 18:16:59 -0700876
877 nlongs = BITS_TO_LONGS(maxnode);
878 if ((maxnode % BITS_PER_LONG) == 0)
879 endmask = ~0UL;
880 else
881 endmask = (1UL << (maxnode % BITS_PER_LONG)) - 1;
882
883 /* When the user specified more nodes than supported just check
884 if the non supported part is all zero. */
885 if (nlongs > BITS_TO_LONGS(MAX_NUMNODES)) {
886 if (nlongs > PAGE_SIZE/sizeof(long))
887 return -EINVAL;
888 for (k = BITS_TO_LONGS(MAX_NUMNODES); k < nlongs; k++) {
889 unsigned long t;
890 if (get_user(t, nmask + k))
891 return -EFAULT;
892 if (k == nlongs - 1) {
893 if (t & endmask)
894 return -EINVAL;
895 } else if (t)
896 return -EINVAL;
897 }
898 nlongs = BITS_TO_LONGS(MAX_NUMNODES);
899 endmask = ~0UL;
900 }
901
902 if (copy_from_user(nodes_addr(*nodes), nmask, nlongs*sizeof(unsigned long)))
903 return -EFAULT;
904 nodes_addr(*nodes)[nlongs-1] &= endmask;
905 return 0;
906}
907
908/* Copy a kernel node mask to user space */
909static int copy_nodes_to_user(unsigned long __user *mask, unsigned long maxnode,
910 nodemask_t *nodes)
911{
912 unsigned long copy = ALIGN(maxnode-1, 64) / 8;
913 const int nbytes = BITS_TO_LONGS(MAX_NUMNODES) * sizeof(long);
914
915 if (copy > nbytes) {
916 if (copy > PAGE_SIZE)
917 return -EINVAL;
918 if (clear_user((char __user *)mask + nbytes, copy - nbytes))
919 return -EFAULT;
920 copy = nbytes;
921 }
922 return copy_to_user(mask, nodes_addr(*nodes), copy) ? -EFAULT : 0;
923}
924
925asmlinkage long sys_mbind(unsigned long start, unsigned long len,
926 unsigned long mode,
927 unsigned long __user *nmask, unsigned long maxnode,
928 unsigned flags)
929{
930 nodemask_t nodes;
931 int err;
932
933 err = get_nodes(&nodes, nmask, maxnode);
934 if (err)
935 return err;
936 return do_mbind(start, len, mode, &nodes, flags);
937}
938
939/* Set the process memory policy */
940asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask,
941 unsigned long maxnode)
942{
943 int err;
944 nodemask_t nodes;
945
946 if (mode < 0 || mode > MPOL_MAX)
947 return -EINVAL;
948 err = get_nodes(&nodes, nmask, maxnode);
949 if (err)
950 return err;
951 return do_set_mempolicy(mode, &nodes);
952}
953
Christoph Lameter39743882006-01-08 01:00:51 -0800954asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,
955 const unsigned long __user *old_nodes,
956 const unsigned long __user *new_nodes)
957{
958 struct mm_struct *mm;
959 struct task_struct *task;
960 nodemask_t old;
961 nodemask_t new;
962 nodemask_t task_nodes;
963 int err;
964
965 err = get_nodes(&old, old_nodes, maxnode);
966 if (err)
967 return err;
968
969 err = get_nodes(&new, new_nodes, maxnode);
970 if (err)
971 return err;
972
973 /* Find the mm_struct */
974 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700975 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter39743882006-01-08 01:00:51 -0800976 if (!task) {
977 read_unlock(&tasklist_lock);
978 return -ESRCH;
979 }
980 mm = get_task_mm(task);
981 read_unlock(&tasklist_lock);
982
983 if (!mm)
984 return -EINVAL;
985
986 /*
987 * Check if this process has the right to modify the specified
988 * process. The right exists if the process has administrative
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800989 * capabilities, superuser privileges or the same
Christoph Lameter39743882006-01-08 01:00:51 -0800990 * userid as the target process.
991 */
992 if ((current->euid != task->suid) && (current->euid != task->uid) &&
993 (current->uid != task->suid) && (current->uid != task->uid) &&
Christoph Lameter74c00242006-03-14 19:50:21 -0800994 !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -0800995 err = -EPERM;
996 goto out;
997 }
998
999 task_nodes = cpuset_mems_allowed(task);
1000 /* Is the user allowed to access the target nodes? */
Christoph Lameter74c00242006-03-14 19:50:21 -08001001 if (!nodes_subset(new, task_nodes) && !capable(CAP_SYS_NICE)) {
Christoph Lameter39743882006-01-08 01:00:51 -08001002 err = -EPERM;
1003 goto out;
1004 }
1005
Lee Schermerhorn37b07e42007-10-16 01:25:39 -07001006 if (!nodes_subset(new, node_states[N_HIGH_MEMORY])) {
Christoph Lameter3b42d282007-08-31 00:12:08 -07001007 err = -EINVAL;
1008 goto out;
1009 }
1010
David Quigley86c3a762006-06-23 02:04:02 -07001011 err = security_task_movememory(task);
1012 if (err)
1013 goto out;
1014
Christoph Lameter511030b2006-02-28 16:58:57 -08001015 err = do_migrate_pages(mm, &old, &new,
Christoph Lameter74c00242006-03-14 19:50:21 -08001016 capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
Christoph Lameter39743882006-01-08 01:00:51 -08001017out:
1018 mmput(mm);
1019 return err;
1020}
1021
1022
Christoph Lameter8bccd852005-10-29 18:16:59 -07001023/* Retrieve NUMA policy */
1024asmlinkage long sys_get_mempolicy(int __user *policy,
1025 unsigned long __user *nmask,
1026 unsigned long maxnode,
1027 unsigned long addr, unsigned long flags)
1028{
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001029 int err;
1030 int uninitialized_var(pval);
Christoph Lameter8bccd852005-10-29 18:16:59 -07001031 nodemask_t nodes;
1032
1033 if (nmask != NULL && maxnode < MAX_NUMNODES)
1034 return -EINVAL;
1035
1036 err = do_get_mempolicy(&pval, &nodes, addr, flags);
1037
1038 if (err)
1039 return err;
1040
1041 if (policy && put_user(pval, policy))
1042 return -EFAULT;
1043
1044 if (nmask)
1045 err = copy_nodes_to_user(nmask, maxnode, &nodes);
1046
1047 return err;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050#ifdef CONFIG_COMPAT
1051
1052asmlinkage long compat_sys_get_mempolicy(int __user *policy,
1053 compat_ulong_t __user *nmask,
1054 compat_ulong_t maxnode,
1055 compat_ulong_t addr, compat_ulong_t flags)
1056{
1057 long err;
1058 unsigned long __user *nm = NULL;
1059 unsigned long nr_bits, alloc_size;
1060 DECLARE_BITMAP(bm, MAX_NUMNODES);
1061
1062 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1063 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1064
1065 if (nmask)
1066 nm = compat_alloc_user_space(alloc_size);
1067
1068 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags);
1069
1070 if (!err && nmask) {
1071 err = copy_from_user(bm, nm, alloc_size);
1072 /* ensure entire bitmap is zeroed */
1073 err |= clear_user(nmask, ALIGN(maxnode-1, 8) / 8);
1074 err |= compat_put_bitmap(nmask, bm, nr_bits);
1075 }
1076
1077 return err;
1078}
1079
1080asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
1081 compat_ulong_t maxnode)
1082{
1083 long err = 0;
1084 unsigned long __user *nm = NULL;
1085 unsigned long nr_bits, alloc_size;
1086 DECLARE_BITMAP(bm, MAX_NUMNODES);
1087
1088 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1089 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1090
1091 if (nmask) {
1092 err = compat_get_bitmap(bm, nmask, nr_bits);
1093 nm = compat_alloc_user_space(alloc_size);
1094 err |= copy_to_user(nm, bm, alloc_size);
1095 }
1096
1097 if (err)
1098 return -EFAULT;
1099
1100 return sys_set_mempolicy(mode, nm, nr_bits+1);
1101}
1102
1103asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
1104 compat_ulong_t mode, compat_ulong_t __user *nmask,
1105 compat_ulong_t maxnode, compat_ulong_t flags)
1106{
1107 long err = 0;
1108 unsigned long __user *nm = NULL;
1109 unsigned long nr_bits, alloc_size;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001110 nodemask_t bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 nr_bits = min_t(unsigned long, maxnode-1, MAX_NUMNODES);
1113 alloc_size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1114
1115 if (nmask) {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001116 err = compat_get_bitmap(nodes_addr(bm), nmask, nr_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 nm = compat_alloc_user_space(alloc_size);
Andi Kleendfcd3c02005-10-29 18:15:48 -07001118 err |= copy_to_user(nm, nodes_addr(bm), alloc_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
1121 if (err)
1122 return -EFAULT;
1123
1124 return sys_mbind(start, len, mode, nm, nr_bits+1, flags);
1125}
1126
1127#endif
1128
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001129/*
1130 * get_vma_policy(@task, @vma, @addr)
1131 * @task - task for fallback if vma policy == default
1132 * @vma - virtual memory area whose policy is sought
1133 * @addr - address in @vma for shared policy lookup
1134 *
1135 * Returns effective policy for a VMA at specified address.
1136 * Falls back to @task or system default policy, as necessary.
1137 * Returned policy has extra reference count if shared, vma,
1138 * or some other task's policy [show_numa_maps() can pass
1139 * @task != current]. It is the caller's responsibility to
1140 * free the reference in these cases.
1141 */
Christoph Lameter48fce342006-01-08 01:01:03 -08001142static struct mempolicy * get_vma_policy(struct task_struct *task,
1143 struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001145 struct mempolicy *pol = task->mempolicy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001146 int shared_pol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (vma) {
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001149 if (vma->vm_ops && vma->vm_ops->get_policy) {
Christoph Lameter8bccd852005-10-29 18:16:59 -07001150 pol = vma->vm_ops->get_policy(vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001151 shared_pol = 1; /* if pol non-NULL, add ref below */
1152 } else if (vma->vm_policy &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 vma->vm_policy->policy != MPOL_DEFAULT)
1154 pol = vma->vm_policy;
1155 }
1156 if (!pol)
1157 pol = &default_policy;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001158 else if (!shared_pol && pol != current->mempolicy)
1159 mpol_get(pol); /* vma or other task's policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return pol;
1161}
1162
1163/* Return a zonelist representing a mempolicy */
Al Virodd0fc662005-10-07 07:46:04 +01001164static struct zonelist *zonelist_policy(gfp_t gfp, struct mempolicy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 int nd;
1167
1168 switch (policy->policy) {
1169 case MPOL_PREFERRED:
1170 nd = policy->v.preferred_node;
1171 if (nd < 0)
1172 nd = numa_node_id();
1173 break;
1174 case MPOL_BIND:
1175 /* Lower zones don't get a policy applied */
1176 /* Careful: current->mems_allowed might have moved */
Christoph Lameter19655d32006-09-25 23:31:19 -07001177 if (gfp_zone(gfp) >= policy_zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
1179 return policy->v.zonelist;
1180 /*FALL THROUGH*/
1181 case MPOL_INTERLEAVE: /* should not happen */
1182 case MPOL_DEFAULT:
1183 nd = numa_node_id();
1184 break;
1185 default:
1186 nd = 0;
1187 BUG();
1188 }
Mel Gorman0e884602008-04-28 02:12:14 -07001189 return node_zonelist(nd, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/* Do dynamic interleaving for a process */
1193static unsigned interleave_nodes(struct mempolicy *policy)
1194{
1195 unsigned nid, next;
1196 struct task_struct *me = current;
1197
1198 nid = me->il_next;
Andi Kleendfcd3c02005-10-29 18:15:48 -07001199 next = next_node(nid, policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (next >= MAX_NUMNODES)
Andi Kleendfcd3c02005-10-29 18:15:48 -07001201 next = first_node(policy->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 me->il_next = next;
1203 return nid;
1204}
1205
Christoph Lameterdc85da12006-01-18 17:42:36 -08001206/*
1207 * Depending on the memory policy provide a node from which to allocate the
1208 * next slab entry.
1209 */
1210unsigned slab_node(struct mempolicy *policy)
1211{
Christoph Lameter765c4502006-09-27 01:50:08 -07001212 int pol = policy ? policy->policy : MPOL_DEFAULT;
1213
1214 switch (pol) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001215 case MPOL_INTERLEAVE:
1216 return interleave_nodes(policy);
1217
Mel Gormandd1a2392008-04-28 02:12:17 -07001218 case MPOL_BIND: {
Christoph Lameterdc85da12006-01-18 17:42:36 -08001219 /*
1220 * Follow bind policy behavior and start allocation at the
1221 * first node.
1222 */
Mel Gormandd1a2392008-04-28 02:12:17 -07001223 return zonelist_node_idx(policy->v.zonelist->_zonerefs);
1224 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08001225
1226 case MPOL_PREFERRED:
1227 if (policy->v.preferred_node >= 0)
1228 return policy->v.preferred_node;
1229 /* Fall through */
1230
1231 default:
1232 return numa_node_id();
1233 }
1234}
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236/* Do static interleaving for a VMA with known offset. */
1237static unsigned offset_il_node(struct mempolicy *pol,
1238 struct vm_area_struct *vma, unsigned long off)
1239{
Andi Kleendfcd3c02005-10-29 18:15:48 -07001240 unsigned nnodes = nodes_weight(pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 unsigned target = (unsigned)off % nnodes;
1242 int c;
1243 int nid = -1;
1244
1245 c = 0;
1246 do {
Andi Kleendfcd3c02005-10-29 18:15:48 -07001247 nid = next_node(nid, pol->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 c++;
1249 } while (c <= target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return nid;
1251}
1252
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001253/* Determine a node number for interleave */
1254static inline unsigned interleave_nid(struct mempolicy *pol,
1255 struct vm_area_struct *vma, unsigned long addr, int shift)
1256{
1257 if (vma) {
1258 unsigned long off;
1259
Nishanth Aravamudan3b98b082006-08-31 21:27:53 -07001260 /*
1261 * for small pages, there is no difference between
1262 * shift and PAGE_SHIFT, so the bit-shift is safe.
1263 * for huge pages, since vm_pgoff is in units of small
1264 * pages, we need to shift off the always 0 bits to get
1265 * a useful offset.
1266 */
1267 BUG_ON(shift < PAGE_SHIFT);
1268 off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001269 off += (addr - vma->vm_start) >> shift;
1270 return offset_il_node(pol, vma, off);
1271 } else
1272 return interleave_nodes(pol);
1273}
1274
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001275#ifdef CONFIG_HUGETLBFS
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001276/*
1277 * huge_zonelist(@vma, @addr, @gfp_flags, @mpol)
1278 * @vma = virtual memory area whose policy is sought
1279 * @addr = address in @vma for shared policy lookup and interleave policy
1280 * @gfp_flags = for requested zone
1281 * @mpol = pointer to mempolicy pointer for reference counted 'BIND policy
1282 *
1283 * Returns a zonelist suitable for a huge page allocation.
1284 * If the effective policy is 'BIND, returns pointer to policy's zonelist.
1285 * If it is also a policy for which get_vma_policy() returns an extra
1286 * reference, we must hold that reference until after allocation.
1287 * In that case, return policy via @mpol so hugetlb allocation can drop
1288 * the reference. For non-'BIND referenced policies, we can/do drop the
1289 * reference here, so the caller doesn't need to know about the special case
1290 * for default and current task policy.
1291 */
Mel Gorman396faf02007-07-17 04:03:13 -07001292struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001293 gfp_t gfp_flags, struct mempolicy **mpol)
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001294{
1295 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001296 struct zonelist *zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001297
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001298 *mpol = NULL; /* probably no unref needed */
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001299 if (pol->policy == MPOL_INTERLEAVE) {
1300 unsigned nid;
1301
1302 nid = interleave_nid(pol, vma, addr, HPAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001303 if (unlikely(pol != &default_policy &&
1304 pol != current->mempolicy))
1305 __mpol_free(pol); /* finished with pol */
Mel Gorman0e884602008-04-28 02:12:14 -07001306 return node_zonelist(nid, gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001307 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001308
1309 zl = zonelist_policy(GFP_HIGHUSER, pol);
1310 if (unlikely(pol != &default_policy && pol != current->mempolicy)) {
1311 if (pol->policy != MPOL_BIND)
1312 __mpol_free(pol); /* finished with pol */
1313 else
1314 *mpol = pol; /* unref needed after allocation */
1315 }
1316 return zl;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001317}
Chen, Kenneth W00ac59a2006-02-03 21:51:14 +01001318#endif
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320/* Allocate a page in interleaved policy.
1321 Own path because it needs to do special accounting. */
Andi Kleen662f3a02005-10-29 18:15:49 -07001322static struct page *alloc_page_interleave(gfp_t gfp, unsigned order,
1323 unsigned nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 struct zonelist *zl;
1326 struct page *page;
1327
Mel Gorman0e884602008-04-28 02:12:14 -07001328 zl = node_zonelist(nid, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 page = __alloc_pages(gfp, order, zl);
Mel Gormandd1a2392008-04-28 02:12:17 -07001330 if (page && page_zone(page) == zonelist_zone(&zl->_zonerefs[0]))
Christoph Lameterca889e62006-06-30 01:55:44 -07001331 inc_zone_page_state(page, NUMA_INTERLEAVE_HIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return page;
1333}
1334
1335/**
1336 * alloc_page_vma - Allocate a page for a VMA.
1337 *
1338 * @gfp:
1339 * %GFP_USER user allocation.
1340 * %GFP_KERNEL kernel allocations,
1341 * %GFP_HIGHMEM highmem/user allocations,
1342 * %GFP_FS allocation should not call back into a file system.
1343 * %GFP_ATOMIC don't sleep.
1344 *
1345 * @vma: Pointer to VMA or NULL if not available.
1346 * @addr: Virtual Address of the allocation. Must be inside the VMA.
1347 *
1348 * This function allocates a page from the kernel page pool and applies
1349 * a NUMA policy associated with the VMA or the current process.
1350 * When VMA is not NULL caller must hold down_read on the mmap_sem of the
1351 * mm_struct of the VMA to prevent it from going away. Should be used for
1352 * all allocations for pages that will be mapped into
1353 * user space. Returns NULL when no page can be allocated.
1354 *
1355 * Should be called with the mm_sem of the vma hold.
1356 */
1357struct page *
Al Virodd0fc662005-10-07 07:46:04 +01001358alloc_page_vma(gfp_t gfp, struct vm_area_struct *vma, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001360 struct mempolicy *pol = get_vma_policy(current, vma, addr);
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001361 struct zonelist *zl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001363 cpuset_update_task_memory_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (unlikely(pol->policy == MPOL_INTERLEAVE)) {
1366 unsigned nid;
Christoph Lameter5da7ca82006-01-06 00:10:46 -08001367
1368 nid = interleave_nid(pol, vma, addr, PAGE_SHIFT);
Lee Schermerhorn69682d82008-03-10 11:43:45 -07001369 if (unlikely(pol != &default_policy &&
1370 pol != current->mempolicy))
1371 __mpol_free(pol); /* finished with pol */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return alloc_page_interleave(gfp, 0, nid);
1373 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001374 zl = zonelist_policy(gfp, pol);
1375 if (pol != &default_policy && pol != current->mempolicy) {
1376 /*
1377 * slow path: ref counted policy -- shared or vma
1378 */
1379 struct page *page = __alloc_pages(gfp, 0, zl);
1380 __mpol_free(pol);
1381 return page;
1382 }
1383 /*
1384 * fast path: default or task policy
1385 */
1386 return __alloc_pages(gfp, 0, zl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389/**
1390 * alloc_pages_current - Allocate pages.
1391 *
1392 * @gfp:
1393 * %GFP_USER user allocation,
1394 * %GFP_KERNEL kernel allocation,
1395 * %GFP_HIGHMEM highmem allocation,
1396 * %GFP_FS don't call back into a file system.
1397 * %GFP_ATOMIC don't sleep.
1398 * @order: Power of two of allocation size in pages. 0 is a single page.
1399 *
1400 * Allocate a page from the kernel page pool. When not in
1401 * interrupt context and apply the current process NUMA policy.
1402 * Returns NULL when no page can be allocated.
1403 *
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001404 * Don't call cpuset_update_task_memory_state() unless
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 * 1) it's ok to take cpuset_sem (can WAIT), and
1406 * 2) allocating for current task (not interrupt).
1407 */
Al Virodd0fc662005-10-07 07:46:04 +01001408struct page *alloc_pages_current(gfp_t gfp, unsigned order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 struct mempolicy *pol = current->mempolicy;
1411
1412 if ((gfp & __GFP_WAIT) && !in_interrupt())
Paul Jacksoncf2a4732006-01-08 01:01:54 -08001413 cpuset_update_task_memory_state();
Christoph Lameter9b819d22006-09-25 23:31:40 -07001414 if (!pol || in_interrupt() || (gfp & __GFP_THISNODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 pol = &default_policy;
1416 if (pol->policy == MPOL_INTERLEAVE)
1417 return alloc_page_interleave(gfp, order, interleave_nodes(pol));
1418 return __alloc_pages(gfp, order, zonelist_policy(gfp, pol));
1419}
1420EXPORT_SYMBOL(alloc_pages_current);
1421
Paul Jackson42253992006-01-08 01:01:59 -08001422/*
1423 * If mpol_copy() sees current->cpuset == cpuset_being_rebound, then it
1424 * rebinds the mempolicy its copying by calling mpol_rebind_policy()
1425 * with the mems_allowed returned by cpuset_mems_allowed(). This
1426 * keeps mempolicies cpuset relative after its cpuset moves. See
1427 * further kernel/cpuset.c update_nodemask().
1428 */
Paul Jackson42253992006-01-08 01:01:59 -08001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430/* Slow path of a mempolicy copy */
1431struct mempolicy *__mpol_copy(struct mempolicy *old)
1432{
1433 struct mempolicy *new = kmem_cache_alloc(policy_cache, GFP_KERNEL);
1434
1435 if (!new)
1436 return ERR_PTR(-ENOMEM);
Paul Jackson42253992006-01-08 01:01:59 -08001437 if (current_cpuset_is_being_rebound()) {
1438 nodemask_t mems = cpuset_mems_allowed(current);
1439 mpol_rebind_policy(old, &mems);
1440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 *new = *old;
1442 atomic_set(&new->refcnt, 1);
1443 if (new->policy == MPOL_BIND) {
1444 int sz = ksize(old->v.zonelist);
Christoph Lametere94b1762006-12-06 20:33:17 -08001445 new->v.zonelist = kmemdup(old->v.zonelist, sz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (!new->v.zonelist) {
1447 kmem_cache_free(policy_cache, new);
1448 return ERR_PTR(-ENOMEM);
1449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 return new;
1452}
1453
1454/* Slow path of a mempolicy comparison */
1455int __mpol_equal(struct mempolicy *a, struct mempolicy *b)
1456{
1457 if (!a || !b)
1458 return 0;
1459 if (a->policy != b->policy)
1460 return 0;
1461 switch (a->policy) {
1462 case MPOL_DEFAULT:
1463 return 1;
1464 case MPOL_INTERLEAVE:
Andi Kleendfcd3c02005-10-29 18:15:48 -07001465 return nodes_equal(a->v.nodes, b->v.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 case MPOL_PREFERRED:
1467 return a->v.preferred_node == b->v.preferred_node;
1468 case MPOL_BIND: {
1469 int i;
Mel Gormandd1a2392008-04-28 02:12:17 -07001470 for (i = 0; a->v.zonelist->_zonerefs[i].zone; i++) {
1471 struct zone *za, *zb;
1472 za = zonelist_zone(&a->v.zonelist->_zonerefs[i]);
1473 zb = zonelist_zone(&b->v.zonelist->_zonerefs[i]);
1474 if (za != zb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return 0;
Mel Gormandd1a2392008-04-28 02:12:17 -07001476 }
1477 return b->v.zonelist->_zonerefs[i].zone == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 default:
1480 BUG();
1481 return 0;
1482 }
1483}
1484
1485/* Slow path of a mpol destructor. */
1486void __mpol_free(struct mempolicy *p)
1487{
1488 if (!atomic_dec_and_test(&p->refcnt))
1489 return;
1490 if (p->policy == MPOL_BIND)
1491 kfree(p->v.zonelist);
1492 p->policy = MPOL_DEFAULT;
1493 kmem_cache_free(policy_cache, p);
1494}
1495
1496/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 * Shared memory backing store policy support.
1498 *
1499 * Remember policies even when nobody has shared memory mapped.
1500 * The policies are kept in Red-Black tree linked from the inode.
1501 * They are protected by the sp->lock spinlock, which should be held
1502 * for any accesses to the tree.
1503 */
1504
1505/* lookup first element intersecting start-end */
1506/* Caller holds sp->lock */
1507static struct sp_node *
1508sp_lookup(struct shared_policy *sp, unsigned long start, unsigned long end)
1509{
1510 struct rb_node *n = sp->root.rb_node;
1511
1512 while (n) {
1513 struct sp_node *p = rb_entry(n, struct sp_node, nd);
1514
1515 if (start >= p->end)
1516 n = n->rb_right;
1517 else if (end <= p->start)
1518 n = n->rb_left;
1519 else
1520 break;
1521 }
1522 if (!n)
1523 return NULL;
1524 for (;;) {
1525 struct sp_node *w = NULL;
1526 struct rb_node *prev = rb_prev(n);
1527 if (!prev)
1528 break;
1529 w = rb_entry(prev, struct sp_node, nd);
1530 if (w->end <= start)
1531 break;
1532 n = prev;
1533 }
1534 return rb_entry(n, struct sp_node, nd);
1535}
1536
1537/* Insert a new shared policy into the list. */
1538/* Caller holds sp->lock */
1539static void sp_insert(struct shared_policy *sp, struct sp_node *new)
1540{
1541 struct rb_node **p = &sp->root.rb_node;
1542 struct rb_node *parent = NULL;
1543 struct sp_node *nd;
1544
1545 while (*p) {
1546 parent = *p;
1547 nd = rb_entry(parent, struct sp_node, nd);
1548 if (new->start < nd->start)
1549 p = &(*p)->rb_left;
1550 else if (new->end > nd->end)
1551 p = &(*p)->rb_right;
1552 else
1553 BUG();
1554 }
1555 rb_link_node(&new->nd, parent, p);
1556 rb_insert_color(&new->nd, &sp->root);
Paul Mundt140d5a42007-07-15 23:38:16 -07001557 pr_debug("inserting %lx-%lx: %d\n", new->start, new->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 new->policy ? new->policy->policy : 0);
1559}
1560
1561/* Find shared policy intersecting idx */
1562struct mempolicy *
1563mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
1564{
1565 struct mempolicy *pol = NULL;
1566 struct sp_node *sn;
1567
1568 if (!sp->root.rb_node)
1569 return NULL;
1570 spin_lock(&sp->lock);
1571 sn = sp_lookup(sp, idx, idx+1);
1572 if (sn) {
1573 mpol_get(sn->policy);
1574 pol = sn->policy;
1575 }
1576 spin_unlock(&sp->lock);
1577 return pol;
1578}
1579
1580static void sp_delete(struct shared_policy *sp, struct sp_node *n)
1581{
Paul Mundt140d5a42007-07-15 23:38:16 -07001582 pr_debug("deleting %lx-l%lx\n", n->start, n->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 rb_erase(&n->nd, &sp->root);
1584 mpol_free(n->policy);
1585 kmem_cache_free(sn_cache, n);
1586}
1587
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001588static struct sp_node *sp_alloc(unsigned long start, unsigned long end,
1589 struct mempolicy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 struct sp_node *n = kmem_cache_alloc(sn_cache, GFP_KERNEL);
1592
1593 if (!n)
1594 return NULL;
1595 n->start = start;
1596 n->end = end;
1597 mpol_get(pol);
1598 n->policy = pol;
1599 return n;
1600}
1601
1602/* Replace a policy range. */
1603static int shared_policy_replace(struct shared_policy *sp, unsigned long start,
1604 unsigned long end, struct sp_node *new)
1605{
1606 struct sp_node *n, *new2 = NULL;
1607
1608restart:
1609 spin_lock(&sp->lock);
1610 n = sp_lookup(sp, start, end);
1611 /* Take care of old policies in the same range. */
1612 while (n && n->start < end) {
1613 struct rb_node *next = rb_next(&n->nd);
1614 if (n->start >= start) {
1615 if (n->end <= end)
1616 sp_delete(sp, n);
1617 else
1618 n->start = end;
1619 } else {
1620 /* Old policy spanning whole new range. */
1621 if (n->end > end) {
1622 if (!new2) {
1623 spin_unlock(&sp->lock);
1624 new2 = sp_alloc(end, n->end, n->policy);
1625 if (!new2)
1626 return -ENOMEM;
1627 goto restart;
1628 }
1629 n->end = start;
1630 sp_insert(sp, new2);
1631 new2 = NULL;
1632 break;
1633 } else
1634 n->end = start;
1635 }
1636 if (!next)
1637 break;
1638 n = rb_entry(next, struct sp_node, nd);
1639 }
1640 if (new)
1641 sp_insert(sp, new);
1642 spin_unlock(&sp->lock);
1643 if (new2) {
1644 mpol_free(new2->policy);
1645 kmem_cache_free(sn_cache, new2);
1646 }
1647 return 0;
1648}
1649
Robin Holt7339ff82006-01-14 13:20:48 -08001650void mpol_shared_policy_init(struct shared_policy *info, int policy,
1651 nodemask_t *policy_nodes)
1652{
1653 info->root = RB_ROOT;
1654 spin_lock_init(&info->lock);
1655
1656 if (policy != MPOL_DEFAULT) {
1657 struct mempolicy *newpol;
1658
1659 /* Falls back to MPOL_DEFAULT on any error */
1660 newpol = mpol_new(policy, policy_nodes);
1661 if (!IS_ERR(newpol)) {
1662 /* Create pseudo-vma that contains just the policy */
1663 struct vm_area_struct pvma;
1664
1665 memset(&pvma, 0, sizeof(struct vm_area_struct));
1666 /* Policy covers entire file */
1667 pvma.vm_end = TASK_SIZE;
1668 mpol_set_shared_policy(info, &pvma, newpol);
1669 mpol_free(newpol);
1670 }
1671 }
1672}
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674int mpol_set_shared_policy(struct shared_policy *info,
1675 struct vm_area_struct *vma, struct mempolicy *npol)
1676{
1677 int err;
1678 struct sp_node *new = NULL;
1679 unsigned long sz = vma_pages(vma);
1680
Paul Mundt140d5a42007-07-15 23:38:16 -07001681 pr_debug("set_shared_policy %lx sz %lu %d %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 vma->vm_pgoff,
1683 sz, npol? npol->policy : -1,
Paul Mundt140d5a42007-07-15 23:38:16 -07001684 npol ? nodes_addr(npol->v.nodes)[0] : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 if (npol) {
1687 new = sp_alloc(vma->vm_pgoff, vma->vm_pgoff + sz, npol);
1688 if (!new)
1689 return -ENOMEM;
1690 }
1691 err = shared_policy_replace(info, vma->vm_pgoff, vma->vm_pgoff+sz, new);
1692 if (err && new)
1693 kmem_cache_free(sn_cache, new);
1694 return err;
1695}
1696
1697/* Free a backing policy store on inode delete. */
1698void mpol_free_shared_policy(struct shared_policy *p)
1699{
1700 struct sp_node *n;
1701 struct rb_node *next;
1702
1703 if (!p->root.rb_node)
1704 return;
1705 spin_lock(&p->lock);
1706 next = rb_first(&p->root);
1707 while (next) {
1708 n = rb_entry(next, struct sp_node, nd);
1709 next = rb_next(&n->nd);
Andi Kleen90c50292005-07-27 11:43:50 -07001710 rb_erase(&n->nd, &p->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 mpol_free(n->policy);
1712 kmem_cache_free(sn_cache, n);
1713 }
1714 spin_unlock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/* assumes fs == KERNEL_DS */
1718void __init numa_policy_init(void)
1719{
Paul Mundtb71636e2007-07-15 23:38:15 -07001720 nodemask_t interleave_nodes;
1721 unsigned long largest = 0;
1722 int nid, prefer = 0;
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 policy_cache = kmem_cache_create("numa_policy",
1725 sizeof(struct mempolicy),
Paul Mundt20c2df82007-07-20 10:11:58 +09001726 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 sn_cache = kmem_cache_create("shared_policy_node",
1729 sizeof(struct sp_node),
Paul Mundt20c2df82007-07-20 10:11:58 +09001730 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Paul Mundtb71636e2007-07-15 23:38:15 -07001732 /*
1733 * Set interleaving policy for system init. Interleaving is only
1734 * enabled across suitably sized nodes (default is >= 16MB), or
1735 * fall back to the largest node if they're all smaller.
1736 */
1737 nodes_clear(interleave_nodes);
Christoph Lameter56bbd652007-10-16 01:25:35 -07001738 for_each_node_state(nid, N_HIGH_MEMORY) {
Paul Mundtb71636e2007-07-15 23:38:15 -07001739 unsigned long total_pages = node_present_pages(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Paul Mundtb71636e2007-07-15 23:38:15 -07001741 /* Preserve the largest node */
1742 if (largest < total_pages) {
1743 largest = total_pages;
1744 prefer = nid;
1745 }
1746
1747 /* Interleave this node? */
1748 if ((total_pages << PAGE_SHIFT) >= (16 << 20))
1749 node_set(nid, interleave_nodes);
1750 }
1751
1752 /* All too small, use the largest */
1753 if (unlikely(nodes_empty(interleave_nodes)))
1754 node_set(prefer, interleave_nodes);
1755
1756 if (do_set_mempolicy(MPOL_INTERLEAVE, &interleave_nodes))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 printk("numa_policy_init: interleaving failed\n");
1758}
1759
Christoph Lameter8bccd852005-10-29 18:16:59 -07001760/* Reset policy of current process to default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761void numa_default_policy(void)
1762{
Christoph Lameter8bccd852005-10-29 18:16:59 -07001763 do_set_mempolicy(MPOL_DEFAULT, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
Paul Jackson68860ec2005-10-30 15:02:36 -08001765
1766/* Migrate a policy to a different set of nodes */
Adrian Bunkdbcb0f12007-10-16 01:26:26 -07001767static void mpol_rebind_policy(struct mempolicy *pol,
1768 const nodemask_t *newmask)
Paul Jackson68860ec2005-10-30 15:02:36 -08001769{
Paul Jackson74cb2152006-01-08 01:01:56 -08001770 nodemask_t *mpolmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001771 nodemask_t tmp;
1772
1773 if (!pol)
1774 return;
Paul Jackson74cb2152006-01-08 01:01:56 -08001775 mpolmask = &pol->cpuset_mems_allowed;
1776 if (nodes_equal(*mpolmask, *newmask))
1777 return;
Paul Jackson68860ec2005-10-30 15:02:36 -08001778
1779 switch (pol->policy) {
1780 case MPOL_DEFAULT:
1781 break;
1782 case MPOL_INTERLEAVE:
Paul Jackson74cb2152006-01-08 01:01:56 -08001783 nodes_remap(tmp, pol->v.nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001784 pol->v.nodes = tmp;
Paul Jackson74cb2152006-01-08 01:01:56 -08001785 *mpolmask = *newmask;
1786 current->il_next = node_remap(current->il_next,
1787 *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001788 break;
1789 case MPOL_PREFERRED:
1790 pol->v.preferred_node = node_remap(pol->v.preferred_node,
Paul Jackson74cb2152006-01-08 01:01:56 -08001791 *mpolmask, *newmask);
1792 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001793 break;
1794 case MPOL_BIND: {
1795 nodemask_t nodes;
Mel Gormandd1a2392008-04-28 02:12:17 -07001796 struct zoneref *z;
Paul Jackson68860ec2005-10-30 15:02:36 -08001797 struct zonelist *zonelist;
1798
1799 nodes_clear(nodes);
Mel Gormandd1a2392008-04-28 02:12:17 -07001800 for (z = pol->v.zonelist->_zonerefs; z->zone; z++)
1801 node_set(zonelist_node_idx(z), nodes);
Paul Jackson74cb2152006-01-08 01:01:56 -08001802 nodes_remap(tmp, nodes, *mpolmask, *newmask);
Paul Jackson68860ec2005-10-30 15:02:36 -08001803 nodes = tmp;
1804
1805 zonelist = bind_zonelist(&nodes);
1806
1807 /* If no mem, then zonelist is NULL and we keep old zonelist.
1808 * If that old zonelist has no remaining mems_allowed nodes,
1809 * then zonelist_policy() will "FALL THROUGH" to MPOL_DEFAULT.
1810 */
1811
KAMEZAWA Hiroyuki8af5e2e2007-02-20 13:57:49 -08001812 if (!IS_ERR(zonelist)) {
Paul Jackson68860ec2005-10-30 15:02:36 -08001813 /* Good - got mem - substitute new zonelist */
1814 kfree(pol->v.zonelist);
1815 pol->v.zonelist = zonelist;
1816 }
Paul Jackson74cb2152006-01-08 01:01:56 -08001817 *mpolmask = *newmask;
Paul Jackson68860ec2005-10-30 15:02:36 -08001818 break;
1819 }
1820 default:
1821 BUG();
1822 break;
1823 }
1824}
1825
1826/*
Paul Jackson74cb2152006-01-08 01:01:56 -08001827 * Wrapper for mpol_rebind_policy() that just requires task
1828 * pointer, and updates task mempolicy.
Paul Jackson68860ec2005-10-30 15:02:36 -08001829 */
Paul Jackson74cb2152006-01-08 01:01:56 -08001830
1831void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new)
Paul Jackson68860ec2005-10-30 15:02:36 -08001832{
Paul Jackson74cb2152006-01-08 01:01:56 -08001833 mpol_rebind_policy(tsk->mempolicy, new);
Paul Jackson68860ec2005-10-30 15:02:36 -08001834}
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001835
1836/*
Paul Jackson42253992006-01-08 01:01:59 -08001837 * Rebind each vma in mm to new nodemask.
1838 *
1839 * Call holding a reference to mm. Takes mm->mmap_sem during call.
1840 */
1841
1842void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
1843{
1844 struct vm_area_struct *vma;
1845
1846 down_write(&mm->mmap_sem);
1847 for (vma = mm->mmap; vma; vma = vma->vm_next)
1848 mpol_rebind_policy(vma->vm_policy, new);
1849 up_write(&mm->mmap_sem);
1850}
1851
1852/*
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001853 * Display pages allocated per node and memory policy via /proc.
1854 */
1855
Helge Deller15ad7cd2006-12-06 20:40:36 -08001856static const char * const policy_types[] =
1857 { "default", "prefer", "bind", "interleave" };
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001858
1859/*
1860 * Convert a mempolicy into a string.
1861 * Returns the number of characters in buffer (if positive)
1862 * or an error (negative)
1863 */
1864static inline int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol)
1865{
1866 char *p = buffer;
1867 int l;
1868 nodemask_t nodes;
1869 int mode = pol ? pol->policy : MPOL_DEFAULT;
1870
1871 switch (mode) {
1872 case MPOL_DEFAULT:
1873 nodes_clear(nodes);
1874 break;
1875
1876 case MPOL_PREFERRED:
1877 nodes_clear(nodes);
1878 node_set(pol->v.preferred_node, nodes);
1879 break;
1880
1881 case MPOL_BIND:
1882 get_zonemask(pol, &nodes);
1883 break;
1884
1885 case MPOL_INTERLEAVE:
1886 nodes = pol->v.nodes;
1887 break;
1888
1889 default:
1890 BUG();
1891 return -EFAULT;
1892 }
1893
1894 l = strlen(policy_types[mode]);
1895 if (buffer + maxlen < p + l + 1)
1896 return -ENOSPC;
1897
1898 strcpy(p, policy_types[mode]);
1899 p += l;
1900
1901 if (!nodes_empty(nodes)) {
1902 if (buffer + maxlen < p + 2)
1903 return -ENOSPC;
1904 *p++ = '=';
1905 p += nodelist_scnprintf(p, buffer + maxlen - p, nodes);
1906 }
1907 return p - buffer;
1908}
1909
1910struct numa_maps {
1911 unsigned long pages;
1912 unsigned long anon;
Christoph Lameter397874d2006-03-06 15:42:53 -08001913 unsigned long active;
1914 unsigned long writeback;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001915 unsigned long mapcount_max;
Christoph Lameter397874d2006-03-06 15:42:53 -08001916 unsigned long dirty;
1917 unsigned long swapcache;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001918 unsigned long node[MAX_NUMNODES];
1919};
1920
Christoph Lameter397874d2006-03-06 15:42:53 -08001921static void gather_stats(struct page *page, void *private, int pte_dirty)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001922{
1923 struct numa_maps *md = private;
1924 int count = page_mapcount(page);
1925
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001926 md->pages++;
Christoph Lameter397874d2006-03-06 15:42:53 -08001927 if (pte_dirty || PageDirty(page))
1928 md->dirty++;
1929
1930 if (PageSwapCache(page))
1931 md->swapcache++;
1932
1933 if (PageActive(page))
1934 md->active++;
1935
1936 if (PageWriteback(page))
1937 md->writeback++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001938
1939 if (PageAnon(page))
1940 md->anon++;
1941
Christoph Lameter397874d2006-03-06 15:42:53 -08001942 if (count > md->mapcount_max)
1943 md->mapcount_max = count;
1944
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001945 md->node[page_to_nid(page)]++;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001946}
1947
Andrew Morton7f709ed2006-03-07 21:55:22 -08001948#ifdef CONFIG_HUGETLB_PAGE
Christoph Lameter397874d2006-03-06 15:42:53 -08001949static void check_huge_range(struct vm_area_struct *vma,
1950 unsigned long start, unsigned long end,
1951 struct numa_maps *md)
1952{
1953 unsigned long addr;
1954 struct page *page;
1955
1956 for (addr = start; addr < end; addr += HPAGE_SIZE) {
1957 pte_t *ptep = huge_pte_offset(vma->vm_mm, addr & HPAGE_MASK);
1958 pte_t pte;
1959
1960 if (!ptep)
1961 continue;
1962
1963 pte = *ptep;
1964 if (pte_none(pte))
1965 continue;
1966
1967 page = pte_page(pte);
1968 if (!page)
1969 continue;
1970
1971 gather_stats(page, md, pte_dirty(*ptep));
1972 }
1973}
Andrew Morton7f709ed2006-03-07 21:55:22 -08001974#else
1975static inline void check_huge_range(struct vm_area_struct *vma,
1976 unsigned long start, unsigned long end,
1977 struct numa_maps *md)
1978{
1979}
1980#endif
Christoph Lameter397874d2006-03-06 15:42:53 -08001981
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001982int show_numa_map(struct seq_file *m, void *v)
1983{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001984 struct proc_maps_private *priv = m->private;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001985 struct vm_area_struct *vma = v;
1986 struct numa_maps *md;
Christoph Lameter397874d2006-03-06 15:42:53 -08001987 struct file *file = vma->vm_file;
1988 struct mm_struct *mm = vma->vm_mm;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001989 struct mempolicy *pol;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001990 int n;
1991 char buffer[50];
1992
Christoph Lameter397874d2006-03-06 15:42:53 -08001993 if (!mm)
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001994 return 0;
1995
1996 md = kzalloc(sizeof(struct numa_maps), GFP_KERNEL);
1997 if (!md)
1998 return 0;
1999
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07002000 pol = get_vma_policy(priv->task, vma, vma->vm_start);
2001 mpol_to_str(buffer, sizeof(buffer), pol);
2002 /*
2003 * unref shared or other task's mempolicy
2004 */
2005 if (pol != &default_policy && pol != current->mempolicy)
2006 __mpol_free(pol);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002007
Christoph Lameter397874d2006-03-06 15:42:53 -08002008 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002009
Christoph Lameter397874d2006-03-06 15:42:53 -08002010 if (file) {
2011 seq_printf(m, " file=");
Jan Blunckc32c2f62008-02-14 19:38:43 -08002012 seq_path(m, &file->f_path, "\n\t= ");
Christoph Lameter397874d2006-03-06 15:42:53 -08002013 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
2014 seq_printf(m, " heap");
2015 } else if (vma->vm_start <= mm->start_stack &&
2016 vma->vm_end >= mm->start_stack) {
2017 seq_printf(m, " stack");
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002018 }
Christoph Lameter397874d2006-03-06 15:42:53 -08002019
2020 if (is_vm_hugetlb_page(vma)) {
2021 check_huge_range(vma, vma->vm_start, vma->vm_end, md);
2022 seq_printf(m, " huge");
2023 } else {
2024 check_pgd_range(vma, vma->vm_start, vma->vm_end,
Christoph Lameter56bbd652007-10-16 01:25:35 -07002025 &node_states[N_HIGH_MEMORY], MPOL_MF_STATS, md);
Christoph Lameter397874d2006-03-06 15:42:53 -08002026 }
2027
2028 if (!md->pages)
2029 goto out;
2030
2031 if (md->anon)
2032 seq_printf(m," anon=%lu",md->anon);
2033
2034 if (md->dirty)
2035 seq_printf(m," dirty=%lu",md->dirty);
2036
2037 if (md->pages != md->anon && md->pages != md->dirty)
2038 seq_printf(m, " mapped=%lu", md->pages);
2039
2040 if (md->mapcount_max > 1)
2041 seq_printf(m, " mapmax=%lu", md->mapcount_max);
2042
2043 if (md->swapcache)
2044 seq_printf(m," swapcache=%lu", md->swapcache);
2045
2046 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
2047 seq_printf(m," active=%lu", md->active);
2048
2049 if (md->writeback)
2050 seq_printf(m," writeback=%lu", md->writeback);
2051
Christoph Lameter56bbd652007-10-16 01:25:35 -07002052 for_each_node_state(n, N_HIGH_MEMORY)
Christoph Lameter397874d2006-03-06 15:42:53 -08002053 if (md->node[n])
2054 seq_printf(m, " N%d=%lu", n, md->node[n]);
2055out:
2056 seq_putc(m, '\n');
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002057 kfree(md);
2058
2059 if (m->count < m->size)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002060 m->version = (vma != priv->tail_vma) ? vma->vm_start : 0;
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08002061 return 0;
2062}