mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
9f37e79754
With CONFIG_PREEMPT=y there is a possible race in disable_sacf_uaccess.
The new set_fs value needs to be stored the the task structure first,
the control register update needs to be second. Otherwise a preemptive
schedule may interrupt the code right after the control register update
has been done and the next time the task is scheduled we get an incorrect
value in the control register due to the old set_fs setting.
Fixes:
|
||
---|---|---|
.. | ||
delay.c | ||
find.c | ||
Makefile | ||
mem.S | ||
probes.c | ||
spinlock.c | ||
string.c | ||
uaccess.c | ||
xor.c |