diff options
-rw-r--r-- | include/linux/mempolicy.h | 3 | ||||
-rw-r--r-- | mm/mempolicy.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 31ac26ca4acf..c2f603218fbc 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
@@ -199,6 +199,9 @@ void mpol_free_shared_policy(struct shared_policy *p); | |||
199 | struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp, | 199 | struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp, |
200 | unsigned long idx); | 200 | unsigned long idx); |
201 | 201 | ||
202 | struct mempolicy *get_vma_policy(struct task_struct *tsk, | ||
203 | struct vm_area_struct *vma, unsigned long addr); | ||
204 | |||
202 | extern void numa_default_policy(void); | 205 | extern void numa_default_policy(void); |
203 | extern void numa_policy_init(void); | 206 | extern void numa_policy_init(void); |
204 | extern void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new, | 207 | extern void mpol_rebind_task(struct task_struct *tsk, const nodemask_t *new, |
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 959a8b8c7350..5bfb03ef3cb0 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
@@ -1489,7 +1489,7 @@ asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len, | |||
1489 | * freeing by another task. It is the caller's responsibility to free the | 1489 | * freeing by another task. It is the caller's responsibility to free the |
1490 | * extra reference for shared policies. | 1490 | * extra reference for shared policies. |
1491 | */ | 1491 | */ |
1492 | static struct mempolicy *get_vma_policy(struct task_struct *task, | 1492 | struct mempolicy *get_vma_policy(struct task_struct *task, |
1493 | struct vm_area_struct *vma, unsigned long addr) | 1493 | struct vm_area_struct *vma, unsigned long addr) |
1494 | { | 1494 | { |
1495 | struct mempolicy *pol = task->mempolicy; | 1495 | struct mempolicy *pol = task->mempolicy; |