aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/mempolicy.h3
-rw-r--r--mm/mempolicy.c4
2 files changed, 2 insertions, 5 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h
index 66247eff24a0..05fddd5bee5d 100644
--- a/include/linux/mempolicy.h
+++ b/include/linux/mempolicy.h
@@ -144,9 +144,6 @@ void mpol_free_shared_policy(struct shared_policy *p);
144struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp, 144struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp,
145 unsigned long idx); 145 unsigned long idx);
146 146
147struct mempolicy *get_vma_policy(struct task_struct *task,
148 struct vm_area_struct *vma, unsigned long addr);
149
150extern void numa_default_policy(void); 147extern void numa_default_policy(void);
151extern void numa_policy_init(void); 148extern void numa_policy_init(void);
152extern void numa_policy_rebind(const nodemask_t *old, const nodemask_t *new); 149extern void numa_policy_rebind(const nodemask_t *old, const nodemask_t *new);
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 4c0510e9e7f6..4b077ec6c005 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -935,8 +935,8 @@ asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
935#endif 935#endif
936 936
937/* Return effective policy for a VMA */ 937/* Return effective policy for a VMA */
938struct mempolicy * 938static struct mempolicy * get_vma_policy(struct task_struct *task,
939get_vma_policy(struct task_struct *task, struct vm_area_struct *vma, unsigned long addr) 939 struct vm_area_struct *vma, unsigned long addr)
940{ 940{
941 struct mempolicy *pol = task->mempolicy; 941 struct mempolicy *pol = task->mempolicy;
942 942