diff options
Diffstat (limited to 'include/linux/mempolicy.h')
-rw-r--r-- | include/linux/mempolicy.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 05fddd5bee5d..74357cb9bc7c 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
@@ -68,6 +68,7 @@ struct mempolicy { | |||
68 | nodemask_t nodes; /* interleave */ | 68 | nodemask_t nodes; /* interleave */ |
69 | /* undefined for default */ | 69 | /* undefined for default */ |
70 | } v; | 70 | } v; |
71 | nodemask_t cpuset_mems_allowed; /* mempolicy relative to these nodes */ | ||
71 | }; | 72 | }; |
72 | 73 | ||
73 | /* | 74 | /* |
@@ -146,7 +147,9 @@ struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp, | |||
146 | 147 | ||
147 | extern void numa_default_policy(void); | 148 | extern void numa_default_policy(void); |
148 | extern void numa_policy_init(void); | 149 | extern void numa_policy_init(void); |
149 | extern void numa_policy_rebind(const nodemask_t *old, const nodemask_t *new); | 150 | extern void mpol_rebind_policy(struct mempolicy *pol, const nodemask_t *new); |
151 | extern void mpol_rebind_task(struct task_struct *tsk, | ||
152 | const nodemask_t *new); | ||
150 | extern struct mempolicy default_policy; | 153 | extern struct mempolicy default_policy; |
151 | extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, | 154 | extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, |
152 | unsigned long addr); | 155 | unsigned long addr); |
@@ -221,7 +224,12 @@ static inline void numa_default_policy(void) | |||
221 | { | 224 | { |
222 | } | 225 | } |
223 | 226 | ||
224 | static inline void numa_policy_rebind(const nodemask_t *old, | 227 | static inline void mpol_rebind_policy(struct mempolicy *pol, |
228 | const nodemask_t *new) | ||
229 | { | ||
230 | } | ||
231 | |||
232 | static inline void mpol_rebind_task(struct task_struct *tsk, | ||
225 | const nodemask_t *new) | 233 | const nodemask_t *new) |
226 | { | 234 | { |
227 | } | 235 | } |