Merge "Restore the non_hz_full"
authorYunhong Jiang <yunhong.jiang@intel.com>
Fri, 22 Jul 2016 22:01:15 +0000 (22:01 +0000)
committerGerrit Code Review <gerrit@172.30.200.206>
Fri, 22 Jul 2016 22:01:15 +0000 (22:01 +0000)
kernel/kernel/time/timer.c

index 76a301b..016a0bf 100644 (file)
@@ -1453,9 +1453,11 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
         * the base lock to check when the next timer is pending and so
         * we assume the next jiffy.
         */
-       return basem + TICK_NSEC;
-#endif
+       if (!spin_do_trylock(&base->lock))
+               return basem + TICK_NSEC;
+#else
        spin_lock(&base->lock);
+#endif
        if (base->active_timers) {
                if (time_before_eq(base->next_timer, base->timer_jiffies))
                        base->next_timer = __next_timer_interrupt(base);
@@ -1465,7 +1467,11 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
                else
                        expires = basem + (nextevt - basej) * TICK_NSEC;
        }
+#ifdef CONFIG_PREEMPT_RT_FULL
+       rt_spin_unlock(&base->lock);
+#else
        spin_unlock(&base->lock);
+#endif
 
        return cmp_next_hrtimer_event(basem, expires);
 }