Lines Matching defs:pmtu
657 /* Initialize the pmtu of the transport. */
1403 void sctp_assoc_set_pmtu(struct sctp_association *asoc, __u32 pmtu)
1405 if (asoc->pathmtu != pmtu) {
1406 asoc->pathmtu = pmtu;
1410 pr_debug("%s: asoc:%p, pmtu:%d, frag_point:%d\n", __func__, asoc,
1414 /* Update the association's pmtu and frag_point by going through all the
1420 __u32 pmtu = 0;
1425 /* Get the lowest pmtu of all the transports. */
1432 if (!pmtu || (t->pathmtu < pmtu))
1433 pmtu = t->pathmtu;
1436 sctp_assoc_set_pmtu(asoc, pmtu);