aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/sctp/socket.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 66b1f02b17ba..a4577a75c6c0 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -2311,11 +2311,10 @@ static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2311 } 2311 }
2312 } 2312 }
2313 2313
2314 /* Note that unless the spp_flag is set to SPP_PMTUD_ENABLE the value 2314 /* Note that a value of zero indicates the current setting should be
2315 * of this field is ignored. Note also that a value of zero 2315 left unchanged.
2316 * indicates the current setting should be left unchanged.
2317 */ 2316 */
2318 if ((params->spp_flags & SPP_PMTUD_ENABLE) && params->spp_pathmaxrxt) { 2317 if (params->spp_pathmaxrxt) {
2319 if (trans) { 2318 if (trans) {
2320 trans->pathmaxrxt = params->spp_pathmaxrxt; 2319 trans->pathmaxrxt = params->spp_pathmaxrxt;
2321 } else if (asoc) { 2320 } else if (asoc) {