Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 216774
b: refs/heads/master
c: c9af3fa
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Oct 25, 2010
1 parent 9866a59 commit be5f72e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0576fc703a03a43e73a57450d5720b47ec7a03ba
refs/heads/master: c9af3fa9e1e3e5154649991a14b74f3a2dee19ee
2 changes: 1 addition & 1 deletion trunk/Documentation/kernel-parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2438,7 +2438,7 @@ and is between 256 and 4096 characters. It is defined in the file
topology informations if the hardware supports these.
The scheduler will make use of these informations and
e.g. base its process migration decisions on it.
Default is off.
Default is on.

tp720= [HW,PS2]

Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/s390/kernel/topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ struct mask_info {
cpumask_t mask;
};

static int topology_enabled;
static int topology_enabled = 1;
static void topology_work_fn(struct work_struct *work);
static struct tl_info *tl_info;
static int machine_has_topology;
Expand Down Expand Up @@ -311,9 +311,9 @@ static void set_topology_timer(void)

static int __init early_parse_topology(char *p)
{
if (strncmp(p, "on", 2))
if (strncmp(p, "off", 3))
return 0;
topology_enabled = 1;
topology_enabled = 0;
return 0;
}
early_param("topology", early_parse_topology);
Expand Down

0 comments on commit be5f72e

Please sign in to comment.