aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mremap.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/mremap.c')
-rw-r--r--mm/mremap.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/mm/mremap.c b/mm/mremap.c
index 318eea5467a0..ccf456477020 100644
--- a/mm/mremap.c
+++ b/mm/mremap.c
@@ -167,6 +167,7 @@ static unsigned long move_vma(struct vm_area_struct *vma,
167 unsigned long new_pgoff; 167 unsigned long new_pgoff;
168 unsigned long moved_len; 168 unsigned long moved_len;
169 unsigned long excess = 0; 169 unsigned long excess = 0;
170 unsigned long hiwater_vm;
170 int split = 0; 171 int split = 0;
171 172
172 /* 173 /*
@@ -205,9 +206,15 @@ static unsigned long move_vma(struct vm_area_struct *vma,
205 } 206 }
206 207
207 /* 208 /*
208 * if we failed to move page tables we still do total_vm increment 209 * If we failed to move page tables we still do total_vm increment
209 * since do_munmap() will decrement it by old_len == new_len 210 * since do_munmap() will decrement it by old_len == new_len.
211 *
212 * Since total_vm is about to be raised artificially high for a
213 * moment, we need to restore high watermark afterwards: if stats
214 * are taken meanwhile, total_vm and hiwater_vm appear too high.
215 * If this were a serious issue, we'd add a flag to do_munmap().
210 */ 216 */
217 hiwater_vm = mm->hiwater_vm;
211 mm->total_vm += new_len >> PAGE_SHIFT; 218 mm->total_vm += new_len >> PAGE_SHIFT;
212 vm_stat_account(mm, vma->vm_flags, vma->vm_file, new_len>>PAGE_SHIFT); 219 vm_stat_account(mm, vma->vm_flags, vma->vm_file, new_len>>PAGE_SHIFT);
213 220
@@ -216,6 +223,7 @@ static unsigned long move_vma(struct vm_area_struct *vma,
216 vm_unacct_memory(excess >> PAGE_SHIFT); 223 vm_unacct_memory(excess >> PAGE_SHIFT);
217 excess = 0; 224 excess = 0;
218 } 225 }
226 mm->hiwater_vm = hiwater_vm;
219 227
220 /* Restore VM_ACCOUNT if one or two pieces of vma left */ 228 /* Restore VM_ACCOUNT if one or two pieces of vma left */
221 if (excess) { 229 if (excess) {