diff options
author | Changli Gao <xiaosuo@gmail.com> | 2010-10-20 18:57:30 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-21 11:30:06 -0400 |
commit | aaabe31c25a439b92cc281b14ca18b85bae7e7a6 (patch) | |
tree | a42754b86ce0e8272655dd6710269f403e3f4271 /include | |
parent | d0959024d8fb6555ba8bfdc6624cc7b7c2e675fd (diff) |
timer: Initialize the field slack of timer_list
TIMER_INITIALIZER() should initialize the field slack of timer_list as
__init_timer() does.
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Cc: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/timer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/timer.h b/include/linux/timer.h index f3dccdb44f95..1794674c1a52 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h | |||
@@ -54,6 +54,7 @@ extern struct tvec_base boot_tvec_bases; | |||
54 | .expires = (_expires), \ | 54 | .expires = (_expires), \ |
55 | .data = (_data), \ | 55 | .data = (_data), \ |
56 | .base = &boot_tvec_bases, \ | 56 | .base = &boot_tvec_bases, \ |
57 | .slack = -1, \ | ||
57 | __TIMER_LOCKDEP_MAP_INITIALIZER( \ | 58 | __TIMER_LOCKDEP_MAP_INITIALIZER( \ |
58 | __FILE__ ":" __stringify(__LINE__)) \ | 59 | __FILE__ ":" __stringify(__LINE__)) \ |
59 | } | 60 | } |