diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2011-12-27 11:27:16 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-12-27 11:27:12 +0100 |
commit | d68bddb7329a4d47d950d6b0745a7e274d230ed4 (patch) | |
tree | c3916656ddad9c86f58945f2b4b4cfac5e741f04 /arch/s390/kernel/smp.c | |
parent | c5328901aa1db134325607d65527742d8be07f7d (diff) | |
download | op-kernel-dev-d68bddb7329a4d47d950d6b0745a7e274d230ed4.zip op-kernel-dev-d68bddb7329a4d47d950d6b0745a7e274d230ed4.tar.gz |
[S390] topology: increase poll frequency if change is anticipated
Increase cpu topology change poll frequency if a change is anticipated.
Otherwise a user might be a bit confused to have to wait up to a minute
in order to see a change this should be visible immediatly.
However there is no guarantee that the change will happen during the
time frame the poll frequency is increased.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/smp.c')
-rw-r--r-- | arch/s390/kernel/smp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 109e742..8aba77d 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c @@ -867,6 +867,7 @@ static ssize_t cpu_configure_store(struct sys_device *dev, if (!rc) { smp_cpu_state[cpu] = CPU_STATE_STANDBY; cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); + topology_expect_change(); } } break; @@ -876,6 +877,7 @@ static ssize_t cpu_configure_store(struct sys_device *dev, if (!rc) { smp_cpu_state[cpu] = CPU_STATE_CONFIGURED; cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); + topology_expect_change(); } } break; |