|
@@ -81,7 +81,11 @@ DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-static int hrtimer_clock_to_base_table[MAX_CLOCKS];
|
|
|
+static int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
|
|
|
+ [CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
|
|
|
+ [CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
|
|
|
+ [CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
|
|
|
+};
|
|
|
|
|
|
static inline int hrtimer_clockid_to_base(clockid_t clock_id)
|
|
|
{
|
|
@@ -1722,10 +1726,6 @@ static struct notifier_block __cpuinitdata hrtimers_nb = {
|
|
|
|
|
|
void __init hrtimers_init(void)
|
|
|
{
|
|
|
- hrtimer_clock_to_base_table[CLOCK_REALTIME] = HRTIMER_BASE_REALTIME;
|
|
|
- hrtimer_clock_to_base_table[CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC;
|
|
|
- hrtimer_clock_to_base_table[CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME;
|
|
|
-
|
|
|
hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
|
|
|
(void *)(long)smp_processor_id());
|
|
|
register_cpu_notifier(&hrtimers_nb);
|