aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hrtimer.h
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2008-09-01 18:27:58 -0400
committerArjan van de Ven <arjan@linux.intel.com>2008-09-06 00:35:25 -0400
commit799b64de256ea68fbb5db63bb55f61c305870643 (patch)
tree3ef586f3eadd42e7a5bd111a8b05667ec3086724 /include/linux/hrtimer.h
parent5c73a7d0411999e3cb3c6d64225450813738ae25 (diff)
hrtimer: rename the "expires" struct member to avoid accidental usage
To catch code that still touches the "expires" memory directly, rename it to have the compiler complain rather than get nasty, hard to explain, runtime behavior Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r--include/linux/hrtimer.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h
index 9900e998ea8f..485a634fd6e2 100644
--- a/include/linux/hrtimer.h
+++ b/include/linux/hrtimer.h
@@ -111,7 +111,7 @@ enum hrtimer_cb_mode {
111 */ 111 */
112struct hrtimer { 112struct hrtimer {
113 struct rb_node node; 113 struct rb_node node;
114 ktime_t expires; 114 ktime_t _expires;
115 enum hrtimer_restart (*function)(struct hrtimer *); 115 enum hrtimer_restart (*function)(struct hrtimer *);
116 struct hrtimer_clock_base *base; 116 struct hrtimer_clock_base *base;
117 unsigned long state; 117 unsigned long state;
@@ -219,41 +219,41 @@ static inline int hrtimer_is_hres_active(struct hrtimer *timer)
219 219
220static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time) 220static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time)
221{ 221{
222 timer->expires = time; 222 timer->_expires = time;
223} 223}
224static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64) 224static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64)
225{ 225{
226 timer->expires.tv64 = tv64; 226 timer->_expires.tv64 = tv64;
227} 227}
228 228
229static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time) 229static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time)
230{ 230{
231 timer->expires = ktime_add_safe(timer->expires, time); 231 timer->_expires = ktime_add_safe(timer->_expires, time);
232} 232}
233 233
234static inline void hrtimer_add_expires_ns(struct hrtimer *timer, unsigned long ns) 234static inline void hrtimer_add_expires_ns(struct hrtimer *timer, unsigned long ns)
235{ 235{
236 timer->expires = ktime_add_ns(timer->expires, ns); 236 timer->_expires = ktime_add_ns(timer->_expires, ns);
237} 237}
238 238
239static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer) 239static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer)
240{ 240{
241 return timer->expires; 241 return timer->_expires;
242} 242}
243 243
244static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer) 244static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer)
245{ 245{
246 return timer->expires.tv64; 246 return timer->_expires.tv64;
247} 247}
248 248
249static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer) 249static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer)
250{ 250{
251 return ktime_to_ns(timer->expires); 251 return ktime_to_ns(timer->_expires);
252} 252}
253 253
254static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer) 254static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer)
255{ 255{
256 return ktime_sub(timer->expires, timer->base->get_time()); 256 return ktime_sub(timer->_expires, timer->base->get_time());
257} 257}
258 258
259/* 259/*
@@ -334,7 +334,7 @@ static inline int hrtimer_start_expires(struct hrtimer *timer,
334 334
335static inline int hrtimer_restart(struct hrtimer *timer) 335static inline int hrtimer_restart(struct hrtimer *timer)
336{ 336{
337 return hrtimer_start(timer, timer->expires, HRTIMER_MODE_ABS); 337 return hrtimer_start(timer, timer->_expires, HRTIMER_MODE_ABS);
338} 338}
339 339
340/* Query timers: */ 340/* Query timers: */