diff options
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 013e3d3ab0f1..33ae9b01131e 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c | |||
@@ -167,11 +167,9 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a | |||
167 | sp->autoclose * HZ; | 167 | sp->autoclose * HZ; |
168 | 168 | ||
169 | /* Initilizes the timers */ | 169 | /* Initilizes the timers */ |
170 | for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) { | 170 | for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) |
171 | init_timer(&asoc->timers[i]); | 171 | setup_timer(&asoc->timers[i], sctp_timer_events[i], |
172 | asoc->timers[i].function = sctp_timer_events[i]; | 172 | (unsigned long)asoc); |
173 | asoc->timers[i].data = (unsigned long) asoc; | ||
174 | } | ||
175 | 173 | ||
176 | /* Pull default initialization values from the sock options. | 174 | /* Pull default initialization values from the sock options. |
177 | * Note: This assumes that the values have already been | 175 | * Note: This assumes that the values have already been |