diff options
Diffstat (limited to 'drivers/s390/char/sclp_quiesce.c')
-rw-r--r-- | drivers/s390/char/sclp_quiesce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/sclp_quiesce.c b/drivers/s390/char/sclp_quiesce.c index 83f75774df60..56fa69168898 100644 --- a/drivers/s390/char/sclp_quiesce.c +++ b/drivers/s390/char/sclp_quiesce.c | |||
@@ -32,7 +32,7 @@ do_load_quiesce_psw(void * __unused) | |||
32 | psw_t quiesce_psw; | 32 | psw_t quiesce_psw; |
33 | int cpu; | 33 | int cpu; |
34 | 34 | ||
35 | if (atomic_compare_and_swap(-1, smp_processor_id(), &cpuid)) | 35 | if (atomic_cmpxchg(&cpuid, -1, smp_processor_id()) != -1) |
36 | signal_processor(smp_processor_id(), sigp_stop); | 36 | signal_processor(smp_processor_id(), sigp_stop); |
37 | /* Wait for all other cpus to enter stopped state */ | 37 | /* Wait for all other cpus to enter stopped state */ |
38 | for_each_online_cpu(cpu) { | 38 | for_each_online_cpu(cpu) { |