linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [-mm] Disable the memory controller by default (v2)
@ 2008-04-07 13:02 Balbir Singh
  2008-04-07 13:22 ` KOSAKI Motohiro
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Balbir Singh @ 2008-04-07 13:02 UTC (permalink / raw)
  To: andi, Andrew Morton
  Cc: YAMAMOTO Takashi, Paul Menage, linux-kernel, linux-mm,
	Pavel Emelianov, hugh, Balbir Singh, KAMEZAWA Hiroyuki



Changelog v1

1. Split cgroup_disable into cgroup_disable and cgroup_enable
2. Remove cgroup_toggle

Due to the overhead of the memory controller. The
memory controller is now disabled by default. This patch adds cgroup_enable.

If everyone agrees on this approach and likes it, should we push this
into 2.6.25?

Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
---

 Documentation/kernel-parameters.txt |    3 +++
 kernel/cgroup.c                     |   28 ++++++++++++++++++++++++++--
 mm/memcontrol.c                     |    1 +
 3 files changed, 30 insertions(+), 2 deletions(-)

diff -puN kernel/cgroup.c~memory-controller-default-option-off kernel/cgroup.c
--- linux-2.6.25-rc8/kernel/cgroup.c~memory-controller-default-option-off	2008-04-07 16:24:28.000000000 +0530
+++ linux-2.6.25-rc8-balbir/kernel/cgroup.c	2008-04-07 18:30:31.000000000 +0530
@@ -3077,8 +3077,8 @@ static int __init cgroup_disable(char *s
 
 			if (!strcmp(token, ss->name)) {
 				ss->disabled = 1;
-				printk(KERN_INFO "Disabling %s control group"
-					" subsystem\n", ss->name);
+				printk(KERN_INFO "%s control group "
+						"is disabled\n", ss->name);
 				break;
 			}
 		}
@@ -3086,3 +3086,27 @@ static int __init cgroup_disable(char *s
 	return 1;
 }
 __setup("cgroup_disable=", cgroup_disable);
+
+static int __init cgroup_enable(char *str)
+{
+	int i;
+	char *token;
+
+	while ((token = strsep(&str, ",")) != NULL) {
+		if (!*token)
+			continue;
+
+		for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
+			struct cgroup_subsys *ss = subsys[i];
+
+			if (!strcmp(token, ss->name)) {
+				ss->disabled = 0;
+				printk(KERN_INFO "%s control group "
+						"is enabled\n", ss->name);
+				break;
+			}
+		}
+	}
+	return 1;
+}
+__setup("cgroup_enable=", cgroup_enable);
diff -puN mm/memcontrol.c~memory-controller-default-option-off mm/memcontrol.c
--- linux-2.6.25-rc8/mm/memcontrol.c~memory-controller-default-option-off	2008-04-07 16:24:28.000000000 +0530
+++ linux-2.6.25-rc8-balbir/mm/memcontrol.c	2008-04-07 16:40:22.000000000 +0530
@@ -1104,4 +1104,5 @@ struct cgroup_subsys mem_cgroup_subsys =
 	.populate = mem_cgroup_populate,
 	.attach = mem_cgroup_move_task,
 	.early_init = 0,
+	.disabled = 1,
 };
diff -puN Documentation/kernel-parameters.txt~memory-controller-default-option-off Documentation/kernel-parameters.txt
--- linux-2.6.25-rc8/Documentation/kernel-parameters.txt~memory-controller-default-option-off	2008-04-07 16:38:25.000000000 +0530
+++ linux-2.6.25-rc8-balbir/Documentation/kernel-parameters.txt	2008-04-07 17:53:28.000000000 +0530
@@ -382,8 +382,11 @@ and is between 256 and 4096 characters. 
 			See Documentation/s390/CommonIO for details.
 
 	cgroup_disable= [KNL] Disable a particular controller
+	cgroup_enable=  [KNL] Enable a particular controller
+			For both cgroup_enable and cgroup_enable
 			Format: {name of the controller(s) to disable}
 				{Currently supported controllers - "memory"}
+				{Memory controller is disabled by default}
 
 	checkreqprot	[SELINUX] Set initial checkreqprot flag value.
 			Format: { "0" | "1" }
_

-- 
	Warm Regards,
	Balbir Singh
	Linux Technology Center
	IBM, ISTL

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

* Re: [-mm] Disable the memory controller by default (v2)
  2008-04-07 13:02 [-mm] Disable the memory controller by default (v2) Balbir Singh
@ 2008-04-07 13:22 ` KOSAKI Motohiro
  2008-04-07 17:43 ` Paul Menage
  2008-04-08  1:09 ` KAMEZAWA Hiroyuki
  2 siblings, 0 replies; 5+ messages in thread
From: KOSAKI Motohiro @ 2008-04-07 13:22 UTC (permalink / raw)
  To: Balbir Singh
  Cc: andi, Andrew Morton, YAMAMOTO Takashi, Paul Menage, linux-kernel,
	linux-mm, Pavel Emelianov, hugh, KAMEZAWA Hiroyuki

>  Changelog v1
>
>  1. Split cgroup_disable into cgroup_disable and cgroup_enable
>  2. Remove cgroup_toggle
>
>  Due to the overhead of the memory controller. The
>  memory controller is now disabled by default. This patch adds cgroup_enable.
>
>  If everyone agrees on this approach and likes it, should we push this
>  into 2.6.25?

Acked-by: KOSAKI Motohiro<kosaki.motohiro@jp.fujitsu.com>

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

* Re: [-mm] Disable the memory controller by default (v2)
  2008-04-07 13:02 [-mm] Disable the memory controller by default (v2) Balbir Singh
  2008-04-07 13:22 ` KOSAKI Motohiro
@ 2008-04-07 17:43 ` Paul Menage
  2008-04-08  1:09 ` KAMEZAWA Hiroyuki
  2 siblings, 0 replies; 5+ messages in thread
From: Paul Menage @ 2008-04-07 17:43 UTC (permalink / raw)
  To: Balbir Singh
  Cc: andi, Andrew Morton, YAMAMOTO Takashi, linux-kernel, linux-mm,
	Pavel Emelianov, hugh, KAMEZAWA Hiroyuki

On Mon, Apr 7, 2008 at 6:02 AM, Balbir Singh <balbir@linux.vnet.ibm.com> wrote:
>         return 1;
>   }
>   __setup("cgroup_disable=", cgroup_disable);
>  +
>  +static int __init cgroup_enable(char *str)
>  +{
>  +       int i;
>  +       char *token;
>  +
>  +       while ((token = strsep(&str, ",")) != NULL) {
>  +               if (!*token)
>  +                       continue;
>  +
>  +               for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
>  +                       struct cgroup_subsys *ss = subsys[i];
>  +
>  +                       if (!strcmp(token, ss->name)) {
>  +                               ss->disabled = 0;
>  +                               printk(KERN_INFO "%s control group "
>  +                                               "is enabled\n", ss->name);
>  +                               break;
>  +                       }
>  +               }
>  +       }
>  +       return 1;
>  +}
>  +__setup("cgroup_enable=", cgroup_enable);

Good idea - but you could just use the same handler function for both
of these (with a one-line wrapper for each to pass disabled=1 or
disabled=0)

Paul

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

* Re: [-mm] Disable the memory controller by default (v2)
  2008-04-07 13:02 [-mm] Disable the memory controller by default (v2) Balbir Singh
  2008-04-07 13:22 ` KOSAKI Motohiro
  2008-04-07 17:43 ` Paul Menage
@ 2008-04-08  1:09 ` KAMEZAWA Hiroyuki
  2008-04-08  2:31   ` Balbir Singh
  2 siblings, 1 reply; 5+ messages in thread
From: KAMEZAWA Hiroyuki @ 2008-04-08  1:09 UTC (permalink / raw)
  To: Balbir Singh
  Cc: andi, Andrew Morton, YAMAMOTO Takashi, Paul Menage, linux-kernel,
	linux-mm, Pavel Emelianov, hugh

On Mon, 07 Apr 2008 18:32:15 +0530
Balbir Singh <balbir@linux.vnet.ibm.com> wrote:

> 
> 
> Changelog v1
> 
> 1. Split cgroup_disable into cgroup_disable and cgroup_enable
> 2. Remove cgroup_toggle
> 
> Due to the overhead of the memory controller. The
> memory controller is now disabled by default. This patch adds cgroup_enable.
> 
> If everyone agrees on this approach and likes it, should we push this
> into 2.6.25?
> 
> Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
> ---
BTW, how the user can know which controllers are on/off at default ?
All controllers are off ?

Thanks,
-Kame

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

* Re: [-mm] Disable the memory controller by default (v2)
  2008-04-08  1:09 ` KAMEZAWA Hiroyuki
@ 2008-04-08  2:31   ` Balbir Singh
  0 siblings, 0 replies; 5+ messages in thread
From: Balbir Singh @ 2008-04-08  2:31 UTC (permalink / raw)
  To: KAMEZAWA Hiroyuki
  Cc: andi, Andrew Morton, YAMAMOTO Takashi, Paul Menage, linux-kernel,
	linux-mm, Pavel Emelianov, hugh

KAMEZAWA Hiroyuki wrote:
> On Mon, 07 Apr 2008 18:32:15 +0530
> Balbir Singh <balbir@linux.vnet.ibm.com> wrote:
> 
>>
>> Changelog v1
>>
>> 1. Split cgroup_disable into cgroup_disable and cgroup_enable
>> 2. Remove cgroup_toggle
>>
>> Due to the overhead of the memory controller. The
>> memory controller is now disabled by default. This patch adds cgroup_enable.
>>
>> If everyone agrees on this approach and likes it, should we push this
>> into 2.6.25?
>>
>> Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
>> ---
> BTW, how the user can know which controllers are on/off at default ?
> All controllers are off ?
> 

/proc/cgroups has an enabled field (fourth one). That should show what is
enabled/disabled. I've also documented it in
Documentation/kernel-parameters.txt. I intend to enable the memory controller
again, once we bring down the overhead.

-- 
	Warm Regards,
	Balbir Singh
	Linux Technology Center
	IBM, ISTL

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

end of thread, other threads:[~2008-04-08  2:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-07 13:02 [-mm] Disable the memory controller by default (v2) Balbir Singh
2008-04-07 13:22 ` KOSAKI Motohiro
2008-04-07 17:43 ` Paul Menage
2008-04-08  1:09 ` KAMEZAWA Hiroyuki
2008-04-08  2:31   ` Balbir Singh

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