Messages in this thread Patch in this message |  | | | Date | Wed, 11 May 2005 19:25:20 +0400 | | From | Kirill Korotaev <> | | Subject | [PATCH] mm acct accounting fix | |
Sorry, forgot to write that all these patches are against 2.6.12-rc4...
This patch fixes mm->total_vm and mm->locked_vm acctounting in case
when move_page_tables() fails inside move_vma().
Signed-Off-By: Kirill Korotaev <dev@sw.ru>
--- ./mm/mremap.c.mmacct 2005-05-10 16:10:40.000000000 +0400
+++ ./mm/mremap.c 2005-05-10 18:12:13.000000000 +0400
@@ -213,6 +213,7 @@ static unsigned long move_vma(struct vm_
old_len = new_len;
old_addr = new_addr;
new_addr = -ENOMEM;
+ new_len = 0;
}
/* Conceal VM_ACCOUNT so old reservation is not undone */ |  |