diff options
-rw-r--r-- | net/ipv4/route.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 7cdd2bf88e0c..a1c5b8dbdfed 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
@@ -3058,7 +3058,9 @@ int __init ip_rt_init(void) | |||
3058 | devinet_init(); | 3058 | devinet_init(); |
3059 | ip_fib_init(); | 3059 | ip_fib_init(); |
3060 | 3060 | ||
3061 | setup_timer(&rt_secret_timer, rt_secret_rebuild, 0); | 3061 | rt_secret_timer.function = rt_secret_rebuild; |
3062 | rt_secret_timer.data = 0; | ||
3063 | init_timer_deferrable(&rt_secret_timer); | ||
3062 | 3064 | ||
3063 | /* All the timers, started at system startup tend | 3065 | /* All the timers, started at system startup tend |
3064 | to synchronize. Perturb it a bit. | 3066 | to synchronize. Perturb it a bit. |