[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4550986C.8020802@cc.kuleuven.be>
Date: Tue, 07 Nov 2006 15:30:04 +0100
From: Rik Bobbaers <Rik.Bobbaers@...kuleuven.be>
To: linux-kernel@...r.kernel.org, linux-mm@...r.kernel.org
Subject: very small code cleanup
hey all,
in mm/mlock.c , mm is defined as vma->vm_mm, why not use that one for
the decrement of pages?
proposed patch:
---------------
--- mm/mlock.c~ 2006-11-04 02:33:58.000000000 +0100
+++ mm/mlock.c 2006-11-07 15:23:48.000000000 +0100
@@ -65,7 +65,7 @@ success:
ret = make_pages_present(start, end);
}
- vma->vm_mm->locked_vm -= pages;
+ mm->locked_vm -= pages;
out:
if (ret == -ENOMEM)
ret = -EAGAIN;
---------------
tnx...
--
harry
aka Rik Bobbaers
K.U.Leuven - LUDIT -=- Tel: +32 485 52 71 50
Rik.Bobbaers@...kuleuven.be -=- http://people.linux-vserver.org/~harry
thinking always leads to conclusions... and those can be extremely dangerous
-- me ;)
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists