mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
mm: fix anon vma naming
Fix two bugs caused by merging anon vma_naming, a typo in mempolicy.c and a bad merge in sys.c. Change-Id: Ia4ced447d50573e68195e95ea2f2b4d9456b8a90 Signed-off-by: Colin Cross <ccross@android.com>
This commit is contained in:
parent
5a7dee22fa
commit
5ff6f12c7a
1 changed files with 1 additions and 1 deletions
|
@ -660,7 +660,7 @@ static int mbind_range(struct mm_struct *mm, unsigned long start,
|
|||
((vmstart - vma->vm_start) >> PAGE_SHIFT);
|
||||
prev = vma_merge(mm, prev, vmstart, vmend, vma->vm_flags,
|
||||
vma->anon_vma, vma->vm_file, pgoff,
|
||||
new_pol, vma_get_anon_name(name));
|
||||
new_pol, vma_get_anon_name(vma));
|
||||
if (prev) {
|
||||
vma = prev;
|
||||
next = vma->vm_next;
|
||||
|
|
Loading…
Reference in a new issue