Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6c73305 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

clocksource: clocksource_select must be called with mutex locked



The callers of clocksource_select must hold clocksource_mutex to
protect the clocksource_list.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
LKML-Reference: <new-submission>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
parent f79e0258
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -471,7 +471,9 @@ static void clocksource_select(void)
static int __init clocksource_done_booting(void)
{
	finished_booting = 1;
	mutex_lock(&clocksource_mutex);
	clocksource_select();
	mutex_unlock(&clocksource_mutex);
	return 0;
}
fs_initcall(clocksource_done_booting);