Lines Matching defs:mtu

614 	attr.mtu = VSW_LDC_MTU;
1968 * Support), set the mtu in our attributes to max_frame_size.
1970 lp->mtu = vswp->max_frame_size;
1974 * Support) set the attr.mtu to ETHERMAX + VLAN_TAGSZ.
1976 lp->mtu = ETHERMAX + VLAN_TAGSZ;
1989 lp->mtu = ETHERMAX;
2515 uint32_t mtu;
2631 * Validate mtu of the peer is at least ETHERMAX. Then, the mtu
2632 * is negotiated down to the minimum of our mtu and peer's mtu.
2634 if (msg->mtu < ETHERMAX) {
2638 mtu = MIN(msg->mtu, vswp->max_frame_size);
2642 * that we sent, then check if the mtu computed
2643 * above matches the mtu that the peer had ack'd
2648 if (mtu != lane_out->mtu) {
2654 * Save the mtu computed above in our
2658 lane_out->mtu = mtu;
2661 /* save the MIN mtu in the msg to be replied */
2662 msg->mtu = mtu;
2664 /* Versions < 1.4, mtu must match */
2665 if (msg->mtu != lane_out->mtu) {
2667 __func__, msg->mtu);
2676 lane_in->mtu = msg->mtu;
2832 * our mtu (that we had sent in our attr info) and the
2833 * peer's mtu.
2836 * the peer, check if the mtu that was computed then
2837 * (saved in lane_out params) matches the mtu that the
2842 if (lane_out->mtu != msg->mtu) {
2847 * If the mtu ack'd by the peer is > our mtu
2848 * fail handshake. Otherwise, save the mtu, so
2852 if (msg->mtu <= lane_out->mtu) {
2853 lane_out->mtu = msg->mtu;
3462 if (size < ETHERMIN || size > lp->mtu) {
4146 if (size > (size_t)lp->mtu) {
4269 attr_msg.mtu = lp->mtu;
4466 lp->mtu = vswp->max_frame_size;
4878 cmn_err(CE_CONT, "ver 0x%x:0x%x : state %lx : mtu 0x%lx\n",
4879 lp->ver_major, lp->ver_minor, lp->lstate, lp->mtu);