aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mempolicy.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mempolicy.h')
-rw-r--r--include/linux/mempolicy.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h
index 69160dc32d48..b8b3da7a3315 100644
--- a/include/linux/mempolicy.h
+++ b/include/linux/mempolicy.h
@@ -54,19 +54,20 @@ struct mm_struct;
54 * mmap_sem. 54 * mmap_sem.
55 * 55 *
56 * Freeing policy: 56 * Freeing policy:
57 * When policy is MPOL_BIND v.zonelist is kmalloc'ed and must be kfree'd. 57 * Mempolicy objects are reference counted. A mempolicy will be freed when
58 * All other policies don't have any external state. mpol_free() handles this. 58 * mpol_free() decrements the reference count to zero.
59 * 59 *
60 * Copying policy objects: 60 * Copying policy objects:
61 * For MPOL_BIND the zonelist must be always duplicated. mpol_clone() does this. 61 * mpol_copy() allocates a new mempolicy and copies the specified mempolicy
62 * to the new storage. The reference count of the new object is initialized
63 * to 1, representing the caller of mpol_copy().
62 */ 64 */
63struct mempolicy { 65struct mempolicy {
64 atomic_t refcnt; 66 atomic_t refcnt;
65 short policy; /* See MPOL_* above */ 67 short policy; /* See MPOL_* above */
66 union { 68 union {
67 struct zonelist *zonelist; /* bind */
68 short preferred_node; /* preferred */ 69 short preferred_node; /* preferred */
69 nodemask_t nodes; /* interleave */ 70 nodemask_t nodes; /* interleave/bind */
70 /* undefined for default */ 71 /* undefined for default */
71 } v; 72 } v;
72 nodemask_t cpuset_mems_allowed; /* mempolicy relative to these nodes */ 73 nodemask_t cpuset_mems_allowed; /* mempolicy relative to these nodes */
@@ -151,7 +152,8 @@ extern void mpol_fix_fork_child_flag(struct task_struct *p);
151 152
152extern struct mempolicy default_policy; 153extern struct mempolicy default_policy;
153extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, 154extern struct zonelist *huge_zonelist(struct vm_area_struct *vma,
154 unsigned long addr, gfp_t gfp_flags, struct mempolicy **mpol); 155 unsigned long addr, gfp_t gfp_flags,
156 struct mempolicy **mpol, nodemask_t **nodemask);
155extern unsigned slab_node(struct mempolicy *policy); 157extern unsigned slab_node(struct mempolicy *policy);
156 158
157extern enum zone_type policy_zone; 159extern enum zone_type policy_zone;
@@ -239,8 +241,11 @@ static inline void mpol_fix_fork_child_flag(struct task_struct *p)
239} 241}
240 242
241static inline struct zonelist *huge_zonelist(struct vm_area_struct *vma, 243static inline struct zonelist *huge_zonelist(struct vm_area_struct *vma,
242 unsigned long addr, gfp_t gfp_flags, struct mempolicy **mpol) 244 unsigned long addr, gfp_t gfp_flags,
245 struct mempolicy **mpol, nodemask_t **nodemask)
243{ 246{
247 *mpol = NULL;
248 *nodemask = NULL;
244 return node_zonelist(0, gfp_flags); 249 return node_zonelist(0, gfp_flags);
245} 250}
246 251