diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 16:27:08 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 16:27:08 -0800 |
commit | 64d5aea30062ce9f3ce7c62be8ae65e776cbfee2 (patch) | |
tree | 7020f4b8533d7fcf5eb24494453515ee672dd172 /kernel | |
parent | 3836a03d978e68b0ae00d3589089343c998cd4ff (diff) | |
parent | ad6759fbf35d104dbf573cd6f4c6784ad6823f7e (diff) | |
download | op-kernel-dev-64d5aea30062ce9f3ce7c62be8ae65e776cbfee2.zip op-kernel-dev-64d5aea30062ce9f3ce7c62be8ae65e776cbfee2.tar.gz |
Merge branch 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
timekeeping: Prevent oops when GENERIC_TIME=n
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/clocksource.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index 1f663d2..1f5dde6 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c @@ -592,6 +592,10 @@ static inline void clocksource_select(void) { } */ static int __init clocksource_done_booting(void) { + mutex_lock(&clocksource_mutex); + curr_clocksource = clocksource_default_clock(); + mutex_unlock(&clocksource_mutex); + finished_booting = 1; /* |