Commit f5a2e343 authored by Thomas Gleixner's avatar Thomas Gleixner

clocksource: Allow clocksource select to skip current clocksource

Preparatory patch for clocksource unbind support.

Split out code from clocksource_select and modify it, so it skips the
current clocksource on request and tries to find a fallback
clocksource. Convert all existing users. No functional change.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Magnus Damm <magnus.damm@gmail.com>
Link: http://lkml.kernel.org/r/20130425143435.834965397@linutronix.deSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 09ac369c
...@@ -553,7 +553,7 @@ static u64 clocksource_max_deferment(struct clocksource *cs) ...@@ -553,7 +553,7 @@ static u64 clocksource_max_deferment(struct clocksource *cs)
#ifndef CONFIG_ARCH_USES_GETTIMEOFFSET #ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
static struct clocksource *clocksource_find_best(bool oneshot) static struct clocksource *clocksource_find_best(bool oneshot, bool skipcur)
{ {
struct clocksource *cs; struct clocksource *cs;
...@@ -566,6 +566,8 @@ static struct clocksource *clocksource_find_best(bool oneshot) ...@@ -566,6 +566,8 @@ static struct clocksource *clocksource_find_best(bool oneshot)
* the best rating. * the best rating.
*/ */
list_for_each_entry(cs, &clocksource_list, list) { list_for_each_entry(cs, &clocksource_list, list) {
if (skipcur && cs == curr_clocksource)
continue;
if (oneshot && !(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES)) if (oneshot && !(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES))
continue; continue;
return cs; return cs;
...@@ -573,26 +575,20 @@ static struct clocksource *clocksource_find_best(bool oneshot) ...@@ -573,26 +575,20 @@ static struct clocksource *clocksource_find_best(bool oneshot)
return NULL; return NULL;
} }
/** static void __clocksource_select(bool skipcur)
* clocksource_select - Select the best clocksource available
*
* Private function. Must hold clocksource_mutex when called.
*
* Select the clocksource with the best rating, or the clocksource,
* which is selected by userspace override.
*/
static void clocksource_select(void)
{ {
bool oneshot = tick_oneshot_mode_active(); bool oneshot = tick_oneshot_mode_active();
struct clocksource *best, *cs; struct clocksource *best, *cs;
/* Find the best suitable clocksource */ /* Find the best suitable clocksource */
best = clocksource_find_best(oneshot); best = clocksource_find_best(oneshot, skipcur);
if (!best) if (!best)
return; return;
/* Check for the override clocksource. */ /* Check for the override clocksource. */
list_for_each_entry(cs, &clocksource_list, list) { list_for_each_entry(cs, &clocksource_list, list) {
if (skipcur && cs == curr_clocksource)
continue;
if (strcmp(cs->name, override_name) != 0) if (strcmp(cs->name, override_name) != 0)
continue; continue;
/* /*
...@@ -618,6 +614,19 @@ static void clocksource_select(void) ...@@ -618,6 +614,19 @@ static void clocksource_select(void)
} }
} }
/**
* clocksource_select - Select the best clocksource available
*
* Private function. Must hold clocksource_mutex when called.
*
* Select the clocksource with the best rating, or the clocksource,
* which is selected by userspace override.
*/
static void clocksource_select(void)
{
return __clocksource_select(false);
}
#else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */ #else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */
static inline void clocksource_select(void) { } static inline void clocksource_select(void) { }
......
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