diff options
author | Yury Norov <yury.norov@gmail.com> | 2025-01-28 11:46:38 -0500 |
---|---|---|
committer | Yury Norov <yury.norov@gmail.com> | 2025-02-24 16:37:23 -0500 |
commit | 0cad4092858767cb54b5ec9be5b3fc39756abd46 (patch) | |
tree | df1ce3b71b0fab2c6a775faea510b9a0a4e814b2 /arch/s390/kernel/processor.c | |
parent | f954a2d37637b09aed55a4bae769720788633a20 (diff) |
s390: switch stop_machine_yield() to using cpumask_next_wrap()
Calling cpumask_next_wrap_old() with starting CPU equal to wrapping CPU
effectively means the request to find next CPU, wrapping around if needed.
cpumask_next_wrap() is the proper replacement for that.
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Diffstat (limited to 'arch/s390/kernel/processor.c')
-rw-r--r-- | arch/s390/kernel/processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/processor.c b/arch/s390/kernel/processor.c index 42ca61909030..745649ad9779 100644 --- a/arch/s390/kernel/processor.c +++ b/arch/s390/kernel/processor.c @@ -72,7 +72,7 @@ void notrace stop_machine_yield(const struct cpumask *cpumask) this_cpu = smp_processor_id(); if (__this_cpu_inc_return(cpu_relax_retry) >= spin_retry) { __this_cpu_write(cpu_relax_retry, 0); - cpu = cpumask_next_wrap_old(this_cpu, cpumask, this_cpu, false); + cpu = cpumask_next_wrap(this_cpu, cpumask); if (cpu >= nr_cpu_ids) return; if (arch_vcpu_is_preempted(cpu)) |