aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid2.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/ccids/ccid2.c')
-rw-r--r--net/dccp/ccids/ccid2.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c
index 5114a2d30bfd..1dff4188f3f5 100644
--- a/net/dccp/ccids/ccid2.c
+++ b/net/dccp/ccids/ccid2.c
@@ -126,19 +126,7 @@ static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hctx)
126 126
127static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb) 127static int ccid2_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
128{ 128{
129 struct ccid2_hc_tx_sock *hctx; 129 struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
130
131 switch (DCCP_SKB_CB(skb)->dccpd_type) {
132 case 0: /* XXX data packets from userland come through like this */
133 case DCCP_PKT_DATA:
134 case DCCP_PKT_DATAACK:
135 break;
136 /* No congestion control on other packets */
137 default:
138 return 0;
139 }
140
141 hctx = ccid2_hc_tx_sk(sk);
142 130
143 ccid2_pr_debug("pipe=%d cwnd=%d\n", hctx->ccid2hctx_pipe, 131 ccid2_pr_debug("pipe=%d cwnd=%d\n", hctx->ccid2hctx_pipe,
144 hctx->ccid2hctx_cwnd); 132 hctx->ccid2hctx_cwnd);