diff options
author | Xin Long <lucien.xin@gmail.com> | 2019-09-02 23:24:21 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-05 00:29:21 +0200 |
commit | 10eb56c582c557c629271f1ee31e15e7a9b2558b (patch) | |
tree | 63fc9ff90de5721bf66f756baf7eae4b1906a18c /net/sctp | |
parent | 591328948ba60423e28d000da99d34f7586de54a (diff) | |
download | linux-10eb56c582c557c629271f1ee31e15e7a9b2558b.tar.gz linux-10eb56c582c557c629271f1ee31e15e7a9b2558b.tar.bz2 linux-10eb56c582c557c629271f1ee31e15e7a9b2558b.zip |
sctp: use transport pf_retrans in sctp_do_8_2_transport_strike
Transport should use its own pf_retrans to do the error_count
check, instead of asoc's. Otherwise, it's meaningless to make
pf_retrans per transport.
Fixes: 5aa93bcf66f4 ("sctp: Implement quick failover draft from tsvwg")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/sm_sideeffect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index 1cf5bb5b73c4..e52b2128e43b 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c @@ -547,7 +547,7 @@ static void sctp_do_8_2_transport_strike(struct sctp_cmd_seq *commands, if (net->sctp.pf_enable && (transport->state == SCTP_ACTIVE) && (transport->error_count < transport->pathmaxrxt) && - (transport->error_count > asoc->pf_retrans)) { + (transport->error_count > transport->pf_retrans)) { sctp_assoc_control_transport(asoc, transport, SCTP_TRANSPORT_PF, |