diff options
author | Salman Qazi <[email protected]> | 2010-10-12 07:25:19 -0700 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2010-10-14 13:29:59 +0200 |
commit | f13d4f979c518119bba5439dd2364d76d31dcd3f (patch) | |
tree | 952be8d19f13a3f0942c67c1f0d400d8dab472ea /lib/string_helpers.c | |
parent | 53eeb64e808971207350386121f4bab12fa2f45f (diff) |
hrtimer: Preserve timer state in remove_hrtimer()
The race is described as follows:
CPU X CPU Y
remove_hrtimer
// state & QUEUED == 0
timer->state = CALLBACK
unlock timer base
timer->f(n) //very long
hrtimer_start
lock timer base
remove_hrtimer // no effect
hrtimer_enqueue
timer->state = CALLBACK |
QUEUED
unlock timer base
hrtimer_start
lock timer base
remove_hrtimer
mode = INACTIVE
// CALLBACK bit lost!
switch_hrtimer_base
CALLBACK bit not set:
timer->base
changes to a
different CPU.
lock this CPU's timer base
The bug was introduced with commit ca109491f (hrtimer: removing all ur
callback modes) in 2.6.29
[ tglx: Feed new state via local variable and add a comment. ]
Signed-off-by: Salman Qazi <[email protected]>
Cc: [email protected]
Cc: Peter Zijlstra <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: [email protected]
Diffstat (limited to 'lib/string_helpers.c')
0 files changed, 0 insertions, 0 deletions