Commit fe3f6208 authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] More barriers in module code.

Paul McKenney convinced me that there's no *guarantee* that all archs
will refuse the speculate the atomic ops above the state test, eg:

CPU0 (stopref_set_state)		CPU1 (stopref)

 atomic_set(&ack, 0);			if (state == XXX)
 wmb();						atomic_inc(&ack);
 state = XXX;

Certainly Alpha needs a rmb() inside stopref to guarantee it sees
the same ordering.
parent b6e31b8e
...@@ -485,6 +485,7 @@ static int stopref(void *cpu) ...@@ -485,6 +485,7 @@ static int stopref(void *cpu)
set_cpus_allowed(current, cpumask_of_cpu((int)(long)cpu)); set_cpus_allowed(current, cpumask_of_cpu((int)(long)cpu));
/* Ack: we are alive */ /* Ack: we are alive */
mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */
atomic_inc(&stopref_thread_ack); atomic_inc(&stopref_thread_ack);
/* Simple state machine */ /* Simple state machine */
...@@ -493,11 +494,13 @@ static int stopref(void *cpu) ...@@ -493,11 +494,13 @@ static int stopref(void *cpu)
local_irq_disable(); local_irq_disable();
irqs_disabled = 1; irqs_disabled = 1;
/* Ack: irqs disabled. */ /* Ack: irqs disabled. */
mb(); /* Must read state first. */
atomic_inc(&stopref_thread_ack); atomic_inc(&stopref_thread_ack);
} else if (stopref_state == STOPREF_PREPARE && !prepared) { } else if (stopref_state == STOPREF_PREPARE && !prepared) {
/* Everyone is in place, hold CPU. */ /* Everyone is in place, hold CPU. */
preempt_disable(); preempt_disable();
prepared = 1; prepared = 1;
mb(); /* Must read state first. */
atomic_inc(&stopref_thread_ack); atomic_inc(&stopref_thread_ack);
} }
if (irqs_disabled || prepared) if (irqs_disabled || prepared)
...@@ -507,6 +510,7 @@ static int stopref(void *cpu) ...@@ -507,6 +510,7 @@ static int stopref(void *cpu)
} }
/* Ack: we are exiting. */ /* Ack: we are exiting. */
mb(); /* Must read state first. */
atomic_inc(&stopref_thread_ack); atomic_inc(&stopref_thread_ack);
if (irqs_disabled) if (irqs_disabled)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment