projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a3928c
)
clocksource: Don't walk the clocksource list for empty override
author
Baolin Wang
<baolin.wang@linaro.org>
Wed, 17 Jan 2018 06:01:28 +0000
(14:01 +0800)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 28 Feb 2018 13:04:52 +0000
(14:04 +0100)
If the override clocksource name is empty there is no point in walking the
clocksource list for a match.
Signed-off-by: Baolin Wang <baolin.wang@linaro.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: arnd@arndb.de
Cc: sboyd@codeaurora.org
Cc: broonie@kernel.org
Cc: john.stultz@linaro.org
Link:
https://lkml.kernel.org/r/069ce2a605546bcad6552968cff755f0a03f9f10.1516167691.git.baolin.wang@linaro.org
kernel/time/clocksource.c
patch
|
blob
|
history
diff --git
a/kernel/time/clocksource.c
b/kernel/time/clocksource.c
index 65f9e3f24dde8bc8f908f4d68cda2fa4f39843ce..c5fdcb13200f766d450820f72ac5e1a92e7050f4 100644
(file)
--- a/
kernel/time/clocksource.c
+++ b/
kernel/time/clocksource.c
@@
-594,6
+594,9
@@
static void __clocksource_select(bool skipcur)
if (!best)
return;
+ if (!strlen(override_name))
+ goto found;
+
/* Check for the override clocksource. */
list_for_each_entry(cs, &clocksource_list, list) {
if (skipcur && cs == curr_clocksource)
@@
-625,6
+628,7
@@
static void __clocksource_select(bool skipcur)
break;
}
+found:
if (curr_clocksource != best && !timekeeping_notify(best)) {
pr_info("Switched to clocksource %s\n", best->name);
curr_clocksource = best;