projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60c1f89
)
cpu/hotplug: Adjust misplaced smb() in cpuhp_thread_fun()
author
Neeraj Upadhyay
<
[email protected]
>
Wed, 5 Sep 2018 05:52:07 +0000
(11:22 +0530)
committer
Thomas Gleixner
<
[email protected]
>
Thu, 6 Sep 2018 13:21:37 +0000
(15:21 +0200)
The smp_mb() in cpuhp_thread_fun() is misplaced. It needs to be after the
load of st->should_run to prevent reordering of the later load/stores
w.r.t. the load of st->should_run.
Fixes: 4dddfb5faa61 ("smp/hotplug: Rewrite AP state machine core")
Signed-off-by: Neeraj Upadhyay <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
Acked-by: Peter Zijlstra (Intel) <
[email protected]
>
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Cc:
[email protected]
Link:
https://lkml.kernel.org/r/
[email protected]
kernel/cpu.c
patch
|
blob
|
history
diff --git
a/kernel/cpu.c
b/kernel/cpu.c
index aa7fe85ad62e86de2060d2b89e525b93506cbf0d..eb4041f78073d81e040a67aa734c897af5e1aa8a 100644
(file)
--- a/
kernel/cpu.c
+++ b/
kernel/cpu.c
@@
-607,15
+607,15
@@
static void cpuhp_thread_fun(unsigned int cpu)
bool bringup = st->bringup;
enum cpuhp_state state;
+ if (WARN_ON_ONCE(!st->should_run))
+ return;
+
/*
* ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures
* that if we see ->should_run we also see the rest of the state.
*/
smp_mb();
- if (WARN_ON_ONCE(!st->should_run))
- return;
-
cpuhp_lock_acquire(bringup);
if (st->single) {