diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-15 07:20:42 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-15 07:20:42 -0400 |
commit | 6ea41d252f35465a2308a4038a323b6b07de06f6 (patch) | |
tree | 50315e593c1eacd4c0ebbe5abb1919bdb0302943 /kernel/time | |
parent | 23970e389e9cee43c4b41023935e1417271708b2 (diff) |
clocksource: Call clocksource_change_rating() outside of watchdog_lock
The changes to the watchdog logic introduced a lock inversion between
watchdog_lock and clocksource_mutex. Change the rating outside of
watchdog_lock to avoid it.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time')
-rw-r--r-- | kernel/time/clocksource.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index a1657b5fdeb9..02dc22d888fe 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
@@ -307,16 +307,23 @@ static void clocksource_watchdog_work(struct work_struct *work) | |||
307 | { | 307 | { |
308 | struct clocksource *cs, *tmp; | 308 | struct clocksource *cs, *tmp; |
309 | unsigned long flags; | 309 | unsigned long flags; |
310 | LIST_HEAD(unstable); | ||
310 | 311 | ||
311 | spin_lock_irqsave(&watchdog_lock, flags); | 312 | spin_lock_irqsave(&watchdog_lock, flags); |
312 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) | 313 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) |
313 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { | 314 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { |
314 | list_del_init(&cs->wd_list); | 315 | list_del_init(&cs->wd_list); |
315 | clocksource_change_rating(cs, 0); | 316 | list_add(&cs->wd_list, &unstable); |
316 | } | 317 | } |
317 | /* Check if the watchdog timer needs to be stopped. */ | 318 | /* Check if the watchdog timer needs to be stopped. */ |
318 | clocksource_stop_watchdog(); | 319 | clocksource_stop_watchdog(); |
319 | spin_unlock(&watchdog_lock); | 320 | spin_unlock_irqrestore(&watchdog_lock, flags); |
321 | |||
322 | /* Needs to be done outside of watchdog lock */ | ||
323 | list_for_each_entry_safe(cs, tmp, &unstable, wd_list) { | ||
324 | list_del_init(&cs->wd_list); | ||
325 | clocksource_change_rating(cs, 0); | ||
326 | } | ||
320 | } | 327 | } |
321 | 328 | ||
322 | #else /* CONFIG_CLOCKSOURCE_WATCHDOG */ | 329 | #else /* CONFIG_CLOCKSOURCE_WATCHDOG */ |