Home | History | Annotate | Download | only in route

Lines Matching defs:mtu

293  * retrieve sane default values for the the MTU and the linktype.
339 * Set the Maximum Transmission Unit (MTU) of traffic control object
341 * @arg mtu largest packet size expected
343 * Sets the MTU of a traffic control object. Not all traffic control
347 * rtnl_tc_set_link(). It is usually not necessary to set the MTU
351 void rtnl_tc_set_mtu(struct rtnl_tc *tc, uint32_t mtu)
353 tc->tc_mtu = mtu;
358 * Return the MTU of traffic control object
361 * Returns the MTU of a traffic control object which has been set via:
688 * txtime = table[pktsize >> log2(mtu)];
694 uint32_t mtu = rtnl_tc_get_mtu(tc);
702 if (mtu == 0)
703 mtu = 2047;
708 * minimum number of rshifts required to break the MTU to below
712 while ((mtu >> cell_log) >= RTNL_TC_RTABLE_SIZE)
859 nl_dump(p, " mtu %u", tc->tc_mtu);