diff options
author | John Stultz <johnstul@us.ibm.com> | 2010-07-13 20:56:25 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-07-27 06:40:55 -0400 |
commit | 8ab4351a4c888016620f43bde605b3d0964af339 (patch) | |
tree | 9d92ee7fbf9391bfcfdc1e49fecc31b9fa4e03c0 /include/linux/time.h | |
parent | 9f31f5774961a735687fee17953ab505b3df3abf (diff) |
hrtimer: Cleanup direct access to wall_to_monotonic
Provides an accessor function to replace hrtimer.c's
direct access of wall_to_monotonic.
This will allow wall_to_monotonic to be made static as
planned in Documentation/feature-removal-schedule.txt
Signed-off-by: John Stultz <johnstul@us.ibm.com>
LKML-Reference: <1279068988-21864-9-git-send-email-johnstul@us.ibm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/time.h')
-rw-r--r-- | include/linux/time.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index 9072df83de1f..a57e0f67b3d0 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -126,7 +126,8 @@ extern int timekeeping_suspended; | |||
126 | 126 | ||
127 | unsigned long get_seconds(void); | 127 | unsigned long get_seconds(void); |
128 | struct timespec current_kernel_time(void); | 128 | struct timespec current_kernel_time(void); |
129 | struct timespec __current_kernel_time(void); /* does not hold xtime_lock */ | 129 | struct timespec __current_kernel_time(void); /* does not take xtime_lock */ |
130 | struct timespec __get_wall_to_monotonic(void); /* does not take xtime_lock */ | ||
130 | struct timespec get_monotonic_coarse(void); | 131 | struct timespec get_monotonic_coarse(void); |
131 | 132 | ||
132 | #define CURRENT_TIME (current_kernel_time()) | 133 | #define CURRENT_TIME (current_kernel_time()) |