blob: 38c04d61ee069f5d5443a6c514d6dc4eb23424f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MEMPOLICY_H
2#define _LINUX_MEMPOLICY_H 1
3
4#include <linux/errno.h>
5
6/*
7 * NUMA memory policies for Linux.
8 * Copyright 2003,2004 Andi Kleen SuSE Labs
9 */
10
11/* Policies */
12#define MPOL_DEFAULT 0
13#define MPOL_PREFERRED 1
14#define MPOL_BIND 2
15#define MPOL_INTERLEAVE 3
16
17#define MPOL_MAX MPOL_INTERLEAVE
18
19/* Flags for get_mem_policy */
20#define MPOL_F_NODE (1<<0) /* return next IL mode instead of node mask */
21#define MPOL_F_ADDR (1<<1) /* look up vma using address */
Lee Schermerhorn754af6f2007-10-16 01:24:51 -070022#define MPOL_F_MEMS_ALLOWED (1<<2) /* return allowed memories */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* Flags for mbind */
25#define MPOL_MF_STRICT (1<<0) /* Verify existing pages in the mapping */
Christoph Lameterdc9aa5b2006-01-08 01:00:50 -080026#define MPOL_MF_MOVE (1<<1) /* Move pages owned by this process to conform to mapping */
27#define MPOL_MF_MOVE_ALL (1<<2) /* Move every page to conform to mapping */
28#define MPOL_MF_INTERNAL (1<<3) /* Internal flags start here */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#ifdef __KERNEL__
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mmzone.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/slab.h>
34#include <linux/rbtree.h>
35#include <linux/spinlock.h>
Andi Kleendfcd3c02005-10-29 18:15:48 -070036#include <linux/nodemask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38struct vm_area_struct;
Ralf Baechle45b35a52006-06-08 00:43:41 -070039struct mm_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#ifdef CONFIG_NUMA
42
43/*
44 * Describe a memory policy.
45 *
46 * A mempolicy can be either associated with a process or with a VMA.
47 * For VMA related allocations the VMA policy is preferred, otherwise
48 * the process policy is used. Interrupts ignore the memory policy
49 * of the current process.
50 *
51 * Locking policy for interlave:
52 * In process context there is no locking because only the process accesses
53 * its own state. All vma manipulation is somewhat protected by a down_read on
Hugh Dickinsb8072f02005-10-29 18:16:41 -070054 * mmap_sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *
56 * Freeing policy:
57 * When policy is MPOL_BIND v.zonelist is kmalloc'ed and must be kfree'd.
58 * All other policies don't have any external state. mpol_free() handles this.
59 *
60 * Copying policy objects:
61 * For MPOL_BIND the zonelist must be always duplicated. mpol_clone() does this.
62 */
63struct mempolicy {
64 atomic_t refcnt;
65 short policy; /* See MPOL_* above */
66 union {
67 struct zonelist *zonelist; /* bind */
68 short preferred_node; /* preferred */
Andi Kleendfcd3c02005-10-29 18:15:48 -070069 nodemask_t nodes; /* interleave */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 /* undefined for default */
71 } v;
Paul Jackson74cb2152006-01-08 01:01:56 -080072 nodemask_t cpuset_mems_allowed; /* mempolicy relative to these nodes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/*
76 * Support for managing mempolicy data objects (clone, copy, destroy)
77 * The default fast path of a NULL MPOL_DEFAULT policy is always inlined.
78 */
79
80extern void __mpol_free(struct mempolicy *pol);
81static inline void mpol_free(struct mempolicy *pol)
82{
83 if (pol)
84 __mpol_free(pol);
85}
86
87extern struct mempolicy *__mpol_copy(struct mempolicy *pol);
88static inline struct mempolicy *mpol_copy(struct mempolicy *pol)
89{
90 if (pol)
91 pol = __mpol_copy(pol);
92 return pol;
93}
94
95#define vma_policy(vma) ((vma)->vm_policy)
96#define vma_set_policy(vma, pol) ((vma)->vm_policy = (pol))
97
98static inline void mpol_get(struct mempolicy *pol)
99{
100 if (pol)
101 atomic_inc(&pol->refcnt);
102}
103
104extern int __mpol_equal(struct mempolicy *a, struct mempolicy *b);
105static inline int mpol_equal(struct mempolicy *a, struct mempolicy *b)
106{
107 if (a == b)
108 return 1;
109 return __mpol_equal(a, b);
110}
111#define vma_mpol_equal(a,b) mpol_equal(vma_policy(a), vma_policy(b))
112
113/* Could later add inheritance of the process policy here. */
114
115#define mpol_set_vma_default(vma) ((vma)->vm_policy = NULL)
116
117/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * Tree of shared policies for a shared memory region.
119 * Maintain the policies in a pseudo mm that contains vmas. The vmas
120 * carry the policy. As a special twist the pseudo mm is indexed in pages, not
121 * bytes, so that we can work with shared memory segments bigger than
122 * unsigned long.
123 */
124
125struct sp_node {
126 struct rb_node nd;
127 unsigned long start, end;
128 struct mempolicy *policy;
129};
130
131struct shared_policy {
132 struct rb_root root;
133 spinlock_t lock;
134};
135
Robin Holt7339ff82006-01-14 13:20:48 -0800136void mpol_shared_policy_init(struct shared_policy *info, int policy,
137 nodemask_t *nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138int mpol_set_shared_policy(struct shared_policy *info,
139 struct vm_area_struct *vma,
140 struct mempolicy *new);
141void mpol_free_shared_policy(struct shared_policy *p);
142struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp,
143 unsigned long idx);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145extern void numa_default_policy(void);
146extern void numa_policy_init(void);
Paul Jackson74cb2152006-01-08 01:01:56 -0800147extern void mpol_rebind_task(struct task_struct *tsk,
148 const nodemask_t *new);
Paul Jackson42253992006-01-08 01:01:59 -0800149extern void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800150extern void mpol_fix_fork_child_flag(struct task_struct *p);
Paul Jackson42253992006-01-08 01:01:59 -0800151#define set_cpuset_being_rebound(x) (cpuset_being_rebound = (x))
152
Paul Jacksonfaf6bbc2006-10-21 10:24:17 -0700153#ifdef CONFIG_CPUSETS
Paul Jackson42253992006-01-08 01:01:59 -0800154#define current_cpuset_is_being_rebound() \
155 (cpuset_being_rebound == current->cpuset)
156#else
157#define current_cpuset_is_being_rebound() 0
158#endif
159
Andi Kleend42c6992005-07-06 19:56:03 +0200160extern struct mempolicy default_policy;
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800161extern struct zonelist *huge_zonelist(struct vm_area_struct *vma,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700162 unsigned long addr, gfp_t gfp_flags, struct mempolicy **mpol);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800163extern unsigned slab_node(struct mempolicy *policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700165extern enum zone_type policy_zone;
Christoph Lameter4be38e32006-01-06 00:11:17 -0800166
Christoph Lameter2f6726e2006-09-25 23:31:18 -0700167static inline void check_highest_zone(enum zone_type k)
Christoph Lameter4be38e32006-01-06 00:11:17 -0800168{
Mel Gormanb377fd32007-08-22 14:02:05 -0700169 if (k > policy_zone && k != ZONE_MOVABLE)
Christoph Lameter4be38e32006-01-06 00:11:17 -0800170 policy_zone = k;
171}
172
Christoph Lameter39743882006-01-08 01:00:51 -0800173int do_migrate_pages(struct mm_struct *mm,
174 const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags);
175
Paul Jackson42253992006-01-08 01:01:59 -0800176extern void *cpuset_being_rebound; /* Trigger mpol_copy vma rebind */
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#else
179
180struct mempolicy {};
181
182static inline int mpol_equal(struct mempolicy *a, struct mempolicy *b)
183{
184 return 1;
185}
186#define vma_mpol_equal(a,b) 1
187
188#define mpol_set_vma_default(vma) do {} while(0)
189
190static inline void mpol_free(struct mempolicy *p)
191{
192}
193
194static inline void mpol_get(struct mempolicy *pol)
195{
196}
197
198static inline struct mempolicy *mpol_copy(struct mempolicy *old)
199{
200 return NULL;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203struct shared_policy {};
204
205static inline int mpol_set_shared_policy(struct shared_policy *info,
206 struct vm_area_struct *vma,
207 struct mempolicy *new)
208{
209 return -EINVAL;
210}
211
Robin Holt7339ff82006-01-14 13:20:48 -0800212static inline void mpol_shared_policy_init(struct shared_policy *info,
213 int policy, nodemask_t *nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215}
216
217static inline void mpol_free_shared_policy(struct shared_policy *p)
218{
219}
220
221static inline struct mempolicy *
222mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
223{
224 return NULL;
225}
226
227#define vma_policy(vma) NULL
228#define vma_set_policy(vma, pol) do {} while(0)
229
230static inline void numa_policy_init(void)
231{
232}
233
234static inline void numa_default_policy(void)
235{
236}
237
Paul Jackson74cb2152006-01-08 01:01:56 -0800238static inline void mpol_rebind_task(struct task_struct *tsk,
Paul Jackson68860ec2005-10-30 15:02:36 -0800239 const nodemask_t *new)
240{
241}
242
Paul Jackson42253992006-01-08 01:01:59 -0800243static inline void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
244{
245}
246
Paul Jacksonc61afb12006-03-24 03:16:08 -0800247static inline void mpol_fix_fork_child_flag(struct task_struct *p)
248{
249}
250
Paul Jackson42253992006-01-08 01:01:59 -0800251#define set_cpuset_being_rebound(x) do {} while (0)
252
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800253static inline struct zonelist *huge_zonelist(struct vm_area_struct *vma,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700254 unsigned long addr, gfp_t gfp_flags, struct mempolicy **mpol)
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800255{
Mel Gorman396faf02007-07-17 04:03:13 -0700256 return NODE_DATA(0)->node_zonelists + gfp_zone(gfp_flags);
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800257}
258
Paul Jackson45b07ef2006-01-08 01:00:56 -0800259static inline int do_migrate_pages(struct mm_struct *mm,
260 const nodemask_t *from_nodes,
261 const nodemask_t *to_nodes, int flags)
262{
263 return 0;
264}
265
Christoph Lameter4be38e32006-01-06 00:11:17 -0800266static inline void check_highest_zone(int k)
267{
268}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#endif /* CONFIG_NUMA */
270#endif /* __KERNEL__ */
271
272#endif