diff options
Diffstat (limited to 'net/dccp')
-rw-r--r-- | net/dccp/ccids/ccid2.c | 6 | ||||
-rw-r--r-- | net/dccp/ccids/ccid3.c | 7 | ||||
-rw-r--r-- | net/dccp/timer.c | 5 |
3 files changed, 6 insertions, 12 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c index d694656b8800..c9c465e86281 100644 --- a/net/dccp/ccids/ccid2.c +++ b/net/dccp/ccids/ccid2.c | |||
@@ -760,10 +760,8 @@ static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk) | |||
760 | hctx->ccid2hctx_rttvar = -1; | 760 | hctx->ccid2hctx_rttvar = -1; |
761 | hctx->ccid2hctx_rpdupack = -1; | 761 | hctx->ccid2hctx_rpdupack = -1; |
762 | hctx->ccid2hctx_last_cong = jiffies; | 762 | hctx->ccid2hctx_last_cong = jiffies; |
763 | 763 | setup_timer(&hctx->ccid2hctx_rtotimer, ccid2_hc_tx_rto_expire, | |
764 | hctx->ccid2hctx_rtotimer.function = &ccid2_hc_tx_rto_expire; | 764 | (unsigned long)sk); |
765 | hctx->ccid2hctx_rtotimer.data = (unsigned long)sk; | ||
766 | init_timer(&hctx->ccid2hctx_rtotimer); | ||
767 | 765 | ||
768 | ccid2_hc_tx_check_sanity(hctx); | 766 | ccid2_hc_tx_check_sanity(hctx); |
769 | return 0; | 767 | return 0; |
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index d133416d3970..f56aaecb56b3 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -606,11 +606,8 @@ static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk) | |||
606 | 606 | ||
607 | hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT; | 607 | hctx->ccid3hctx_state = TFRC_SSTATE_NO_SENT; |
608 | INIT_LIST_HEAD(&hctx->ccid3hctx_hist); | 608 | INIT_LIST_HEAD(&hctx->ccid3hctx_hist); |
609 | 609 | setup_timer(&hctx->ccid3hctx_no_feedback_timer, | |
610 | hctx->ccid3hctx_no_feedback_timer.function = | 610 | ccid3_hc_tx_no_feedback_timer, (unsigned long)sk); |
611 | ccid3_hc_tx_no_feedback_timer; | ||
612 | hctx->ccid3hctx_no_feedback_timer.data = (unsigned long)sk; | ||
613 | init_timer(&hctx->ccid3hctx_no_feedback_timer); | ||
614 | 611 | ||
615 | return 0; | 612 | return 0; |
616 | } | 613 | } |
diff --git a/net/dccp/timer.c b/net/dccp/timer.c index 3af067354bd4..8703a792b560 100644 --- a/net/dccp/timer.c +++ b/net/dccp/timer.c | |||
@@ -280,9 +280,8 @@ static void dccp_init_write_xmit_timer(struct sock *sk) | |||
280 | { | 280 | { |
281 | struct dccp_sock *dp = dccp_sk(sk); | 281 | struct dccp_sock *dp = dccp_sk(sk); |
282 | 282 | ||
283 | init_timer(&dp->dccps_xmit_timer); | 283 | setup_timer(&dp->dccps_xmit_timer, dccp_write_xmit_timer, |
284 | dp->dccps_xmit_timer.data = (unsigned long)sk; | 284 | (unsigned long)sk); |
285 | dp->dccps_xmit_timer.function = dccp_write_xmit_timer; | ||
286 | } | 285 | } |
287 | 286 | ||
288 | void dccp_init_xmit_timers(struct sock *sk) | 287 | void dccp_init_xmit_timers(struct sock *sk) |