Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44276
b: refs/heads/master
c: f6282f4
h: refs/heads/master
v: v3
  • Loading branch information
Gerrit Renker authored and David S. Miller committed Dec 11, 2006
1 parent c4c80c2 commit 389918c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bf58a381e8106fe73247c753e3da58fcb5eabd2e
refs/heads/master: f6282f4da5eb67e08eff94d73a1911c3a008846a
6 changes: 4 additions & 2 deletions trunk/net/dccp/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void dccp_write_xmit(struct sock *sk, int block)
break;
} else
err = dccp_wait_for_ccid(sk, skb);
if (err)
if (err && err != -EINTR)
DCCP_BUG("err=%d after dccp_wait_for_ccid", err);
}

Expand All @@ -267,8 +267,10 @@ void dccp_write_xmit(struct sock *sk, int block)
if (err)
DCCP_BUG("err=%d after ccid_hc_tx_packet_sent",
err);
} else
} else {
dccp_pr_debug("packet discarded\n");
kfree(skb);
}
}
}

Expand Down

0 comments on commit 389918c

Please sign in to comment.