diff options
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 297d9cf960b9..a827a1f562bf 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c | |||
@@ -1450,7 +1450,8 @@ void sctp_assoc_sync_pmtu(struct sctp_association *asoc) | |||
1450 | /* Get the lowest pmtu of all the transports. */ | 1450 | /* Get the lowest pmtu of all the transports. */ |
1451 | list_for_each_entry(t, &asoc->peer.transport_addr_list, transports) { | 1451 | list_for_each_entry(t, &asoc->peer.transport_addr_list, transports) { |
1452 | if (t->pmtu_pending && t->dst) { | 1452 | if (t->pmtu_pending && t->dst) { |
1453 | sctp_transport_update_pmtu(t, sctp_dst_mtu(t->dst)); | 1453 | sctp_transport_update_pmtu(t, |
1454 | atomic_read(&t->mtu_info)); | ||
1454 | t->pmtu_pending = 0; | 1455 | t->pmtu_pending = 0; |
1455 | } | 1456 | } |
1456 | if (!pmtu || (t->pathmtu < pmtu)) | 1457 | if (!pmtu || (t->pathmtu < pmtu)) |