Lines Matching defs:pmtu
661 /* Initialize the pmtu of the transport. */
1411 void sctp_assoc_set_pmtu(struct sctp_association *asoc, __u32 pmtu)
1413 if (asoc->pathmtu != pmtu) {
1414 asoc->pathmtu = pmtu;
1418 pr_debug("%s: asoc:%p, pmtu:%d, frag_point:%d\n", __func__, asoc,
1422 /* Update the association's pmtu and frag_point by going through all the
1428 __u32 pmtu = 0;
1433 /* Get the lowest pmtu of all the transports. */
1440 if (!pmtu || (t->pathmtu < pmtu))
1441 pmtu = t->pathmtu;
1444 sctp_assoc_set_pmtu(asoc, pmtu);