You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
This commit is contained in:
@@ -840,12 +840,12 @@ void sctp_assoc_control_transport(struct sctp_association *asoc,
|
||||
else
|
||||
spc_state = SCTP_ADDR_AVAILABLE;
|
||||
/* Don't inform ULP about transition from PF to
|
||||
* active state and set cwnd to 1, see SCTP
|
||||
* active state and set cwnd to 1 MTU, see SCTP
|
||||
* Quick failover draft section 5.1, point 5
|
||||
*/
|
||||
if (transport->state == SCTP_PF) {
|
||||
ulp_notify = false;
|
||||
transport->cwnd = 1;
|
||||
transport->cwnd = asoc->pathmtu;
|
||||
}
|
||||
transport->state = SCTP_ACTIVE;
|
||||
break;
|
||||
|
||||
@@ -175,12 +175,12 @@ static void sctp_transport_destroy(struct sctp_transport *transport)
|
||||
return;
|
||||
}
|
||||
|
||||
call_rcu(&transport->rcu, sctp_transport_destroy_rcu);
|
||||
|
||||
sctp_packet_free(&transport->packet);
|
||||
|
||||
if (transport->asoc)
|
||||
sctp_association_put(transport->asoc);
|
||||
|
||||
call_rcu(&transport->rcu, sctp_transport_destroy_rcu);
|
||||
}
|
||||
|
||||
/* Start T3_rtx timer if it is not already running and update the heartbeat
|
||||
|
||||
Reference in New Issue
Block a user