|
@@ -636,7 +636,6 @@ static int mbind_range(struct mm_struct *mm, unsigned long start,
|
|
|
struct vm_area_struct *prev;
|
|
|
struct vm_area_struct *vma;
|
|
|
int err = 0;
|
|
|
- pgoff_t pgoff;
|
|
|
unsigned long vmstart;
|
|
|
unsigned long vmend;
|
|
|
|
|
@@ -649,9 +648,9 @@ static int mbind_range(struct mm_struct *mm, unsigned long start,
|
|
|
vmstart = max(start, vma->vm_start);
|
|
|
vmend = min(end, vma->vm_end);
|
|
|
|
|
|
- pgoff = vma->vm_pgoff + ((start - 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->anon_vma, vma->vm_file, vma->vm_pgoff,
|
|
|
+ new_pol);
|
|
|
if (prev) {
|
|
|
vma = prev;
|
|
|
next = vma->vm_next;
|