1 /* SPDX-License-Identifier: GPL-2.0 */
3 * NUMA memory policies for Linux.
4 * Copyright 2003,2004 Andi Kleen SuSE Labs
6 #ifndef _LINUX_MEMPOLICY_H
7 #define _LINUX_MEMPOLICY_H 1
9 #include <linux/sched.h>
10 #include <linux/mmzone.h>
11 #include <linux/slab.h>
12 #include <linux/rbtree.h>
13 #include <linux/spinlock.h>
14 #include <linux/nodemask.h>
15 #include <linux/pagemap.h>
16 #include <uapi/linux/mempolicy.h>
23 * Describe a memory policy.
25 * A mempolicy can be either associated with a process or with a VMA.
26 * For VMA related allocations the VMA policy is preferred, otherwise
27 * the process policy is used. Interrupts ignore the memory policy
28 * of the current process.
30 * Locking policy for interleave:
31 * In process context there is no locking because only the process accesses
32 * its own state. All vma manipulation is somewhat protected by a down_read on
36 * Mempolicy objects are reference counted. A mempolicy will be freed when
37 * mpol_put() decrements the reference count to zero.
39 * Duplicating policy objects:
40 * mpol_dup() allocates a new mempolicy and copies the specified mempolicy
41 * to the new storage. The reference count of the new object is initialized
42 * to 1, representing the caller of mpol_dup().
46 unsigned short mode; /* See MPOL_* above */
47 unsigned short flags; /* See set_mempolicy() MPOL_F_* above */
48 nodemask_t nodes; /* interleave/bind/perfer */
51 nodemask_t cpuset_mems_allowed; /* relative to these nodes */
52 nodemask_t user_nodemask; /* nodemask passed by user */
57 * Support for managing mempolicy data objects (clone, copy, destroy)
58 * The default fast path of a NULL MPOL_DEFAULT policy is always inlined.
61 extern void __mpol_put(struct mempolicy *pol);
62 static inline void mpol_put(struct mempolicy *pol)
69 * Does mempolicy pol need explicit unref after use?
70 * Currently only needed for shared policies.
72 static inline int mpol_needs_cond_ref(struct mempolicy *pol)
74 return (pol && (pol->flags & MPOL_F_SHARED));
77 static inline void mpol_cond_put(struct mempolicy *pol)
79 if (mpol_needs_cond_ref(pol))
83 extern struct mempolicy *__mpol_dup(struct mempolicy *pol);
84 static inline struct mempolicy *mpol_dup(struct mempolicy *pol)
87 pol = __mpol_dup(pol);
91 #define vma_policy(vma) ((vma)->vm_policy)
93 static inline void mpol_get(struct mempolicy *pol)
96 atomic_inc(&pol->refcnt);
99 extern bool __mpol_equal(struct mempolicy *a, struct mempolicy *b);
100 static inline bool mpol_equal(struct mempolicy *a, struct mempolicy *b)
104 return __mpol_equal(a, b);
108 * Tree of shared policies for a shared memory region.
109 * Maintain the policies in a pseudo mm that contains vmas. The vmas
110 * carry the policy. As a special twist the pseudo mm is indexed in pages, not
111 * bytes, so that we can work with shared memory segments bigger than
117 unsigned long start, end;
118 struct mempolicy *policy;
121 struct shared_policy {
126 int vma_dup_policy(struct vm_area_struct *src, struct vm_area_struct *dst);
127 void mpol_shared_policy_init(struct shared_policy *sp, struct mempolicy *mpol);
128 int mpol_set_shared_policy(struct shared_policy *info,
129 struct vm_area_struct *vma,
130 struct mempolicy *new);
131 void mpol_free_shared_policy(struct shared_policy *p);
132 struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp,
135 struct mempolicy *get_task_policy(struct task_struct *p);
136 struct mempolicy *__get_vma_policy(struct vm_area_struct *vma,
138 bool vma_policy_mof(struct vm_area_struct *vma);
140 extern void numa_default_policy(void);
141 extern void numa_policy_init(void);
142 extern void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new);
143 extern void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new);
145 extern int huge_node(struct vm_area_struct *vma,
146 unsigned long addr, gfp_t gfp_flags,
147 struct mempolicy **mpol, nodemask_t **nodemask);
148 extern bool init_nodemask_of_mempolicy(nodemask_t *mask);
149 extern bool mempolicy_in_oom_domain(struct task_struct *tsk,
150 const nodemask_t *mask);
151 extern nodemask_t *policy_nodemask(gfp_t gfp, struct mempolicy *policy);
153 static inline nodemask_t *policy_nodemask_current(gfp_t gfp)
155 struct mempolicy *mpol = get_task_policy(current);
157 return policy_nodemask(gfp, mpol);
160 extern unsigned int mempolicy_slab_node(void);
162 extern enum zone_type policy_zone;
164 static inline void check_highest_zone(enum zone_type k)
166 if (k > policy_zone && k != ZONE_MOVABLE)
170 int do_migrate_pages(struct mm_struct *mm, const nodemask_t *from,
171 const nodemask_t *to, int flags);
175 extern int mpol_parse_str(char *str, struct mempolicy **mpol);
178 extern void mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol);
180 /* Check if a vma is migratable */
181 extern bool vma_migratable(struct vm_area_struct *vma);
183 extern int mpol_misplaced(struct page *, struct vm_area_struct *, unsigned long);
184 extern void mpol_put_task_policy(struct task_struct *);
186 static inline bool mpol_is_preferred_many(struct mempolicy *pol)
188 return (pol->mode == MPOL_PREFERRED_MANY);
196 static inline bool mpol_equal(struct mempolicy *a, struct mempolicy *b)
201 static inline void mpol_put(struct mempolicy *p)
205 static inline void mpol_cond_put(struct mempolicy *pol)
209 static inline void mpol_get(struct mempolicy *pol)
213 struct shared_policy {};
215 static inline void mpol_shared_policy_init(struct shared_policy *sp,
216 struct mempolicy *mpol)
220 static inline void mpol_free_shared_policy(struct shared_policy *p)
224 static inline struct mempolicy *
225 mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
230 #define vma_policy(vma) NULL
233 vma_dup_policy(struct vm_area_struct *src, struct vm_area_struct *dst)
238 static inline void numa_policy_init(void)
242 static inline void numa_default_policy(void)
246 static inline void mpol_rebind_task(struct task_struct *tsk,
247 const nodemask_t *new)
251 static inline void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new)
255 static inline int huge_node(struct vm_area_struct *vma,
256 unsigned long addr, gfp_t gfp_flags,
257 struct mempolicy **mpol, nodemask_t **nodemask)
264 static inline bool init_nodemask_of_mempolicy(nodemask_t *m)
269 static inline int do_migrate_pages(struct mm_struct *mm, const nodemask_t *from,
270 const nodemask_t *to, int flags)
275 static inline void check_highest_zone(int k)
280 static inline int mpol_parse_str(char *str, struct mempolicy **mpol)
282 return 1; /* error */
286 static inline int mpol_misplaced(struct page *page, struct vm_area_struct *vma,
287 unsigned long address)
289 return -1; /* no node preference */
292 static inline void mpol_put_task_policy(struct task_struct *task)
296 static inline nodemask_t *policy_nodemask_current(gfp_t gfp)
301 static inline bool mpol_is_preferred_many(struct mempolicy *pol)
306 #endif /* CONFIG_NUMA */