linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] memcg: fix kmem_account_flags check in memcg_can_account_kmem()
@ 2013-11-27 15:46 Vladimir Davydov
  2013-11-27 15:46 ` [PATCH] memcg: make memcg_update_cache_sizes() static Vladimir Davydov
  2013-11-29  9:45 ` [PATCH] memcg: fix kmem_account_flags check in memcg_can_account_kmem() Michal Hocko
  0 siblings, 2 replies; 5+ messages in thread
From: Vladimir Davydov @ 2013-11-27 15:46 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-mm, cgroups, devel, Johannes Weiner, Michal Hocko,
	Balbir Singh, KAMEZAWA Hiroyuki

We should start kmem accounting for a memory cgroup only after both its
kmem limit is set (KMEM_ACCOUNTED_ACTIVE) and related call sites are
patched (KMEM_ACCOUNTED_ACTIVATED). Currently memcg_can_account_kmem()
allows kmem accounting even if only one of the conditions is true.
Fix it.

Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Balbir Singh <bsingharora@gmail.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
---
 mm/memcontrol.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index f1a0ae6..40efb9d 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -2956,7 +2956,8 @@ static DEFINE_MUTEX(set_limit_mutex);
 static inline bool memcg_can_account_kmem(struct mem_cgroup *memcg)
 {
 	return !mem_cgroup_disabled() && !mem_cgroup_is_root(memcg) &&
-		(memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK);
+		(memcg->kmem_account_flags & KMEM_ACCOUNTED_MASK) ==
+							KMEM_ACCOUNTED_MASK;
 }
 
 /*
-- 
1.7.10.4

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2013-11-29 10:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-27 15:46 [PATCH] memcg: fix kmem_account_flags check in memcg_can_account_kmem() Vladimir Davydov
2013-11-27 15:46 ` [PATCH] memcg: make memcg_update_cache_sizes() static Vladimir Davydov
2013-11-29  9:45   ` Michal Hocko
2013-11-29  9:45 ` [PATCH] memcg: fix kmem_account_flags check in memcg_can_account_kmem() Michal Hocko
2013-11-29 10:09   ` Vladimir Davydov

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