* [PATCH] hrtimer: remove hrtimer_clock_base::get_softirq_time
@ 2008-01-16 13:04 Peter Zijlstra
0 siblings, 0 replies; only message in thread
From: Peter Zijlstra @ 2008-01-16 13:04 UTC (permalink / raw)
To: linux-kernel, Ingo Molnar, Thomas Gleixner
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 <a.p.zijlstra@chello.nl>
---
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)) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-16 13:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-16 13:04 [PATCH] hrtimer: remove hrtimer_clock_base::get_softirq_time Peter Zijlstra
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox