linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [patch] memcg: fix unit mismatch in memcg oom limit calculation
@ 2010-11-09 11:05 Johannes Weiner
  2010-11-09 20:00 ` Greg Thelen
  2010-11-16  4:02 ` KAMEZAWA Hiroyuki
  0 siblings, 2 replies; 7+ messages in thread
From: Johannes Weiner @ 2010-11-09 11:05 UTC (permalink / raw)
  To: Andrew Morton
  Cc: David Rientjes, KAMEZAWA Hiroyuki, Balbir Singh,
	Daisuke Nishimura, Greg Thelen, linux-mm, linux-kernel

Adding the number of swap pages to the byte limit of a memory control
group makes no sense.  Convert the pages to bytes before adding them.

The only user of this code is the OOM killer, and the way it is used
means that the error results in a higher OOM badness value.  Since the
cgroup limit is the same for all tasks in the cgroup, the error should
have no practical impact at the moment.

But let's not wait for future or changing users to trip over it.

Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
---
 mm/memcontrol.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -1552,8 +1552,9 @@ u64 mem_cgroup_get_limit(struct mem_cgro
 	u64 limit;
 	u64 memsw;
 
-	limit = res_counter_read_u64(&memcg->res, RES_LIMIT) +
-			total_swap_pages;
+	limit = res_counter_read_u64(&memcg->res, RES_LIMIT);
+	limit += total_swap_pages << PAGE_SHIFT;
+
 	memsw = res_counter_read_u64(&memcg->memsw, RES_LIMIT);
 	/*
 	 * If memsw is finite and limits the amount of swap space available

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-11-16  4:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-09 11:05 [patch] memcg: fix unit mismatch in memcg oom limit calculation Johannes Weiner
2010-11-09 20:00 ` Greg Thelen
2010-11-09 21:31   ` David Rientjes
2010-11-09 22:01     ` mem_cgroup_get_limit() return type, was " Greg Thelen
2010-11-09 23:21       ` David Rientjes
2010-11-10  1:26         ` Greg Thelen
2010-11-16  4:02 ` KAMEZAWA Hiroyuki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox