diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-07-22 15:40:14 +0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-07-22 19:12:32 +0400 |
commit | fbd90375d7531927d312766b548376d909811b4d (patch) | |
tree | 3eff386f9e3d15e8f890c2a1a1cf12e100b6ab0c /include/linux/hrtimer.h | |
parent | a40f262cc21fbfd781bbddcc40b16b83a75f5f34 (diff) | |
download | linux-fbd90375d7531927d312766b548376d909811b4d.tar.xz |
hrtimer: Remove cb_entry from struct hrtimer
It's unused, remove it.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <new-submission>
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r-- | include/linux/hrtimer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 54648e625efd..40e7d54fc424 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h @@ -91,7 +91,6 @@ enum hrtimer_restart { * @function: timer expiry callback function * @base: pointer to the timer base (per cpu and per clock) * @state: state information (See bit values above) - * @cb_entry: list head to enqueue an expired timer into the callback list * @start_site: timer statistics field to store the site where the timer * was started * @start_comm: timer statistics field to store the name of the process which @@ -108,7 +107,6 @@ struct hrtimer { enum hrtimer_restart (*function)(struct hrtimer *); struct hrtimer_clock_base *base; unsigned long state; - struct list_head cb_entry; #ifdef CONFIG_TIMER_STATS int start_pid; void *start_site; |