mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
sctp: Implement quick failover draft from tsvwg
I've seen several attempts recently made to do quick failover of sctp transports by reducing various retransmit timers and counters. While its possible to implement a faster failover on multihomed sctp associations, its not particularly robust, in that it can lead to unneeded retransmits, as well as false connection failures due to intermittent latency on a network. Instead, lets implement the new ietf quick failover draft found here: http://tools.ietf.org/html/draft-nishida-tsvwg-sctp-failover-05 This will let the sctp stack identify transports that have had a small number of errors, and avoid using them quickly until their reliability can be re-established. I've tested this out on two virt guests connected via multiple isolated virt networks and believe its in compliance with the above draft and works well. Signed-off-by: Neil Horman <nhorman@tuxdriver.com> CC: Vlad Yasevich <vyasevich@gmail.com> CC: Sridhar Samudrala <sri@us.ibm.com> CC: "David S. Miller" <davem@davemloft.net> CC: linux-sctp@vger.kernel.org CC: joe@perches.com Acked-by: Vlad Yasevich <vyasevich@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e3906486f6
commit
5aa93bcf66
10 changed files with 221 additions and 15 deletions
|
@ -792,7 +792,8 @@ static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout)
|
|||
if (!new_transport)
|
||||
new_transport = asoc->peer.active_path;
|
||||
} else if ((new_transport->state == SCTP_INACTIVE) ||
|
||||
(new_transport->state == SCTP_UNCONFIRMED)) {
|
||||
(new_transport->state == SCTP_UNCONFIRMED) ||
|
||||
(new_transport->state == SCTP_PF)) {
|
||||
/* If the chunk is Heartbeat or Heartbeat Ack,
|
||||
* send it to chunk->transport, even if it's
|
||||
* inactive.
|
||||
|
@ -987,7 +988,8 @@ static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout)
|
|||
new_transport = chunk->transport;
|
||||
if (!new_transport ||
|
||||
((new_transport->state == SCTP_INACTIVE) ||
|
||||
(new_transport->state == SCTP_UNCONFIRMED)))
|
||||
(new_transport->state == SCTP_UNCONFIRMED) ||
|
||||
(new_transport->state == SCTP_PF)))
|
||||
new_transport = asoc->peer.active_path;
|
||||
if (new_transport->state == SCTP_UNCONFIRMED)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue