diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2010-10-25 10:10:43 -0400 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-10-25 10:10:20 -0400 |
commit | c9af3fa9e1e3e5154649991a14b74f3a2dee19ee (patch) | |
tree | 89da9bef9b676f33e7bd36318d3046e56217e844 /arch/s390 | |
parent | 0576fc703a03a43e73a57450d5720b47ec7a03ba (diff) |
[S390] topology: change default
Switch default value of the kernel parameter 'topology' from off to on.
Various performance measurements have finally shown that there are no
(known) regressions anywhere.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/topology.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/kernel/topology.c b/arch/s390/kernel/topology.c index 13559c993847..eb0bc4752ae8 100644 --- a/arch/s390/kernel/topology.c +++ b/arch/s390/kernel/topology.c | |||
@@ -63,7 +63,7 @@ struct mask_info { | |||
63 | cpumask_t mask; | 63 | cpumask_t mask; |
64 | }; | 64 | }; |
65 | 65 | ||
66 | static int topology_enabled; | 66 | static int topology_enabled = 1; |
67 | static void topology_work_fn(struct work_struct *work); | 67 | static void topology_work_fn(struct work_struct *work); |
68 | static struct tl_info *tl_info; | 68 | static struct tl_info *tl_info; |
69 | static int machine_has_topology; | 69 | static int machine_has_topology; |
@@ -311,9 +311,9 @@ static void set_topology_timer(void) | |||
311 | 311 | ||
312 | static int __init early_parse_topology(char *p) | 312 | static int __init early_parse_topology(char *p) |
313 | { | 313 | { |
314 | if (strncmp(p, "on", 2)) | 314 | if (strncmp(p, "off", 3)) |
315 | return 0; | 315 | return 0; |
316 | topology_enabled = 1; | 316 | topology_enabled = 0; |
317 | return 0; | 317 | return 0; |
318 | } | 318 | } |
319 | early_param("topology", early_parse_topology); | 319 | early_param("topology", early_parse_topology); |