diff options
Diffstat (limited to 'net/dccp/output.c')
-rw-r--r-- | net/dccp/output.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/dccp/output.c b/net/dccp/output.c index bfd9c5757897..400c30b6fcae 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c | |||
@@ -195,8 +195,7 @@ static int dccp_wait_for_ccid(struct sock *sk, struct sk_buff *skb, | |||
195 | if (signal_pending(current)) | 195 | if (signal_pending(current)) |
196 | goto do_interrupted; | 196 | goto do_interrupted; |
197 | 197 | ||
198 | rc = ccid_hc_tx_send_packet(dp->dccps_hc_tx_ccid, sk, skb, | 198 | rc = ccid_hc_tx_send_packet(dp->dccps_hc_tx_ccid, sk, skb); |
199 | skb->len); | ||
200 | if (rc <= 0) | 199 | if (rc <= 0) |
201 | break; | 200 | break; |
202 | delay = msecs_to_jiffies(rc); | 201 | delay = msecs_to_jiffies(rc); |
@@ -245,8 +244,7 @@ void dccp_write_xmit(struct sock *sk, int block) | |||
245 | this we have other issues */ | 244 | this we have other issues */ |
246 | 245 | ||
247 | while ((skb = skb_peek(&sk->sk_write_queue))) { | 246 | while ((skb = skb_peek(&sk->sk_write_queue))) { |
248 | int err = ccid_hc_tx_send_packet(dp->dccps_hc_tx_ccid, sk, skb, | 247 | int err = ccid_hc_tx_send_packet(dp->dccps_hc_tx_ccid, sk, skb); |
249 | skb->len); | ||
250 | 248 | ||
251 | if (err > 0) { | 249 | if (err > 0) { |
252 | if (!block) { | 250 | if (!block) { |