Lines Matching defs:pmtu
662 /* Initialize the pmtu of the transport. */
1394 void sctp_assoc_set_pmtu(struct sctp_association *asoc, __u32 pmtu)
1396 if (asoc->pathmtu != pmtu) {
1397 asoc->pathmtu = pmtu;
1401 pr_debug("%s: asoc:%p, pmtu:%d, frag_point:%d\n", __func__, asoc,
1405 /* Update the association's pmtu and frag_point by going through all the
1411 __u32 pmtu = 0;
1416 /* Get the lowest pmtu of all the transports. */
1423 if (!pmtu || (t->pathmtu < pmtu))
1424 pmtu = t->pathmtu;
1427 sctp_assoc_set_pmtu(asoc, pmtu);