diff options
author | Kees Cook <keescook@chromium.org> | 2017-10-24 01:46:09 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-25 12:59:19 +0900 |
commit | 839a6094140ade97ccc548fcd63179506c5d7fe4 (patch) | |
tree | e9b9d6ee85cdcabe72ef234230ae615ec80d84a4 /net/dccp/ccids/ccid3.h | |
parent | 7aa1402e2eb4988b09bf1671e9f968e6e5689b1d (diff) | |
download | op-kernel-dev-839a6094140ade97ccc548fcd63179506c5d7fe4.zip op-kernel-dev-839a6094140ade97ccc548fcd63179506c5d7fe4.tar.gz |
net: dccp: Convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly. Adds a pointer back to the sock.
Cc: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Soheil Hassas Yeganeh <soheil@google.com>
Cc: Hannes Frederic Sowa <hannes@stressinduktion.org>
Cc: Eric Dumazet <edumazet@google.com>
Cc: dccp@vger.kernel.org
Cc: netdev@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids/ccid3.h')
-rw-r--r-- | net/dccp/ccids/ccid3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dccp/ccids/ccid3.h b/net/dccp/ccids/ccid3.h index 1a9933c..813d91c 100644 --- a/net/dccp/ccids/ccid3.h +++ b/net/dccp/ccids/ccid3.h @@ -106,6 +106,7 @@ struct ccid3_hc_tx_sock { u8 tx_last_win_count; ktime_t tx_t_last_win_count; struct timer_list tx_no_feedback_timer; + struct sock *sk; ktime_t tx_t_ld; ktime_t tx_t_nom; struct tfrc_tx_hist_entry *tx_hist; |