Re: [PATCH 2/2] memcg: always enable kmemcg on the default hierarchy
From: Andrew Morton <akpm@linux-foundation.org>
Date: 2015-08-31 22:54:26
Also in:
linux-mm
From: Andrew Morton <akpm@linux-foundation.org>
Date: 2015-08-31 22:54:26
Also in:
linux-mm
On Fri, 28 Aug 2015 18:02:37 -0400 Tejun Heo [off-list ref] wrote:
On the default hierarchy, all memory consumption will be accounted together and controlled by the same set of limits. Enable kmemcg on the default hierarchy by default. Boot parameter "disable_kmemcg" can be specified to turn it off. ... mm/memcontrol.c | 43 ++++++++++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 13 deletions(-)
Some documentation updates will be needed?
--- a/mm/memcontrol.c +++ b/mm/memcontrol.c@@ -346,6 +346,17 @@ EXPORT_SYMBOL(tcp_proto_cgroup); #endif #ifdef CONFIG_MEMCG_KMEM + +static bool kmemcg_disabled; + +static int __init disable_kmemcg(char *s) +{ + kmemcg_disabled = true; + pr_info("memcg: kernel memory support disabled on cgroup2");
typo?
+ return 0;
+}
+__setup("disable_kmemcg", disable_kmemcg);-- 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>