Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327801
b: refs/heads/master
c: 54a2792
h: refs/heads/master
i:
  327799: a1f0c8a
v: v3
  • Loading branch information
Wei Yongjun authored and David S. Miller committed Sep 4, 2012
1 parent 64055dc commit 6ac79ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 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: 6e129d04de7adbd63e86293533688ce88b9b13d8
refs/heads/master: 54a27924237eeb9767135a423dea14a0d1b5954f
10 changes: 4 additions & 6 deletions trunk/net/sctp/outqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -591,9 +591,8 @@ static int sctp_outq_flush_rtx(struct sctp_outq *q, struct sctp_packet *pkt,
* next chunk.
*/
if (chunk->tsn_gap_acked) {
list_del(&chunk->transmitted_list);
list_add_tail(&chunk->transmitted_list,
&transport->transmitted);
list_move_tail(&chunk->transmitted_list,
&transport->transmitted);
continue;
}

Expand Down Expand Up @@ -657,9 +656,8 @@ static int sctp_outq_flush_rtx(struct sctp_outq *q, struct sctp_packet *pkt,
/* The append was successful, so add this chunk to
* the transmitted list.
*/
list_del(&chunk->transmitted_list);
list_add_tail(&chunk->transmitted_list,
&transport->transmitted);
list_move_tail(&chunk->transmitted_list,
&transport->transmitted);

/* Mark the chunk as ineligible for fast retransmit
* after it is retransmitted.
Expand Down

0 comments on commit 6ac79ff

Please sign in to comment.