diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mempolicy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 5e19c2275a6f..9080fab1426d 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
@@ -80,7 +80,7 @@ struct mm_struct; | |||
80 | */ | 80 | */ |
81 | struct mempolicy { | 81 | struct mempolicy { |
82 | atomic_t refcnt; | 82 | atomic_t refcnt; |
83 | unsigned short policy; /* See MPOL_* above */ | 83 | unsigned short mode; /* See MPOL_* above */ |
84 | unsigned short flags; /* See set_mempolicy() MPOL_F_* above */ | 84 | unsigned short flags; /* See set_mempolicy() MPOL_F_* above */ |
85 | union { | 85 | union { |
86 | short preferred_node; /* preferred */ | 86 | short preferred_node; /* preferred */ |
@@ -149,7 +149,7 @@ struct shared_policy { | |||
149 | spinlock_t lock; | 149 | spinlock_t lock; |
150 | }; | 150 | }; |
151 | 151 | ||
152 | void mpol_shared_policy_init(struct shared_policy *info, unsigned short policy, | 152 | void mpol_shared_policy_init(struct shared_policy *info, unsigned short mode, |
153 | unsigned short flags, nodemask_t *nodes); | 153 | unsigned short flags, nodemask_t *nodes); |
154 | int mpol_set_shared_policy(struct shared_policy *info, | 154 | int mpol_set_shared_policy(struct shared_policy *info, |
155 | struct vm_area_struct *vma, | 155 | struct vm_area_struct *vma, |
@@ -213,7 +213,7 @@ static inline int mpol_set_shared_policy(struct shared_policy *info, | |||
213 | } | 213 | } |
214 | 214 | ||
215 | static inline void mpol_shared_policy_init(struct shared_policy *info, | 215 | static inline void mpol_shared_policy_init(struct shared_policy *info, |
216 | unsigned short policy, unsigned short flags, nodemask_t *nodes) | 216 | unsigned short mode, unsigned short flags, nodemask_t *nodes) |
217 | { | 217 | { |
218 | } | 218 | } |
219 | 219 | ||