Subject: hrtimer: remove hrtimer_clock_base::get_softirq_time()

When looking over the hrtimer code I noticed that 
hrtimer_clock_base::get_softirq_time() is currently unused in the entire
tree, remove it.

Signed-off-by: Peter Zijlstra <[EMAIL PROTECTED]>
---
 include/linux/hrtimer.h |    2 --
 kernel/hrtimer.c        |    3 ---
 2 files changed, 5 deletions(-)

Index: linux-2.6/include/linux/hrtimer.h
===================================================================
--- linux-2.6.orig/include/linux/hrtimer.h
+++ linux-2.6/include/linux/hrtimer.h
@@ -147,7 +147,6 @@ struct hrtimer_sleeper {
  * @first:             pointer to the timer node which expires first
  * @resolution:                the resolution of the clock, in nanoseconds
  * @get_time:          function to retrieve the current time of the clock
- * @get_softirq_time:  function to retrieve the current time from the softirq
  * @softirq_time:      the time when running the hrtimer queue in the softirq
  * @offset:            offset of this clock to the monotonic base
  * @reprogram:         function to reprogram the timer event
@@ -159,7 +158,6 @@ struct hrtimer_clock_base {
        struct rb_node          *first;
        ktime_t                 resolution;
        ktime_t                 (*get_time)(void);
-       ktime_t                 (*get_softirq_time)(void);
        ktime_t                 softirq_time;
 #ifdef CONFIG_HIGH_RES_TIMERS
        ktime_t                 offset;
Index: linux-2.6/kernel/hrtimer.c
===================================================================
--- linux-2.6.orig/kernel/hrtimer.c
+++ linux-2.6/kernel/hrtimer.c
@@ -1177,9 +1177,6 @@ static inline void run_hrtimer_queue(str
        if (!base->first)
                return;
 
-       if (base->get_softirq_time)
-               base->softirq_time = base->get_softirq_time();
-
        spin_lock_irq(&cpu_base->lock);
 
        while ((node = base->first)) {


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to