diff options
-rw-r--r-- | net/dccp/ccids/ccid3.c | 2 | ||||
-rw-r--r-- | net/dccp/ccids/ccid3.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index f8644bfd88fb..8266dfde89c1 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -685,8 +685,6 @@ static void ccid3_hc_rx_send_feedback(struct sock *sk, | |||
685 | ktime_t now; | 685 | ktime_t now; |
686 | s64 delta = 0; | 686 | s64 delta = 0; |
687 | 687 | ||
688 | ccid3_pr_debug("%s(%p) - entry \n", dccp_role(sk), sk); | ||
689 | |||
690 | if (unlikely(hcrx->ccid3hcrx_state == TFRC_RSTATE_TERM)) | 688 | if (unlikely(hcrx->ccid3hcrx_state == TFRC_RSTATE_TERM)) |
691 | return; | 689 | return; |
692 | 690 | ||
diff --git a/net/dccp/ccids/ccid3.h b/net/dccp/ccids/ccid3.h index 3c33dc670cf9..6ceeb8013f58 100644 --- a/net/dccp/ccids/ccid3.h +++ b/net/dccp/ccids/ccid3.h | |||
@@ -135,9 +135,9 @@ enum ccid3_hc_rx_states { | |||
135 | * | 135 | * |
136 | * @ccid3hcrx_x_recv - Receiver estimate of send rate (RFC 3448 4.3) | 136 | * @ccid3hcrx_x_recv - Receiver estimate of send rate (RFC 3448 4.3) |
137 | * @ccid3hcrx_rtt - Receiver estimate of rtt (non-standard) | 137 | * @ccid3hcrx_rtt - Receiver estimate of rtt (non-standard) |
138 | * @ccid3hcrx_p - current loss event rate (RFC 3448 5.4) | 138 | * @ccid3hcrx_p - Current loss event rate (RFC 3448 5.4) |
139 | * @ccid3hcrx_last_counter - Tracks window counter (RFC 4342, 8.1) | 139 | * @ccid3hcrx_last_counter - Tracks window counter (RFC 4342, 8.1) |
140 | * @ccid3hcrx_state - receiver state, one of %ccid3_hc_rx_states | 140 | * @ccid3hcrx_state - Receiver state, one of %ccid3_hc_rx_states |
141 | * @ccid3hcrx_bytes_recv - Total sum of DCCP payload bytes | 141 | * @ccid3hcrx_bytes_recv - Total sum of DCCP payload bytes |
142 | * @ccid3hcrx_tstamp_last_feedback - Time at which last feedback was sent | 142 | * @ccid3hcrx_tstamp_last_feedback - Time at which last feedback was sent |
143 | * @ccid3hcrx_tstamp_last_ack - Time at which last feedback was sent | 143 | * @ccid3hcrx_tstamp_last_ack - Time at which last feedback was sent |