Home | History | Annotate | Download | only in route

Lines Matching refs:mpu

377  * Set the Minimum Packet Unit (MPU) of a traffic control object
379 * @arg mpu minimum packet size expected
381 * Sets the MPU of a traffic contorl object. It specifies the minimum
386 void rtnl_tc_set_mpu(struct rtnl_tc *tc, uint32_t mpu)
388 tc->tc_mpu = mpu;
393 * Return the Minimum Packet Unit (MPU) of a traffic control object
396 * @return The MPU previously set via rtnl_tc_set_mpu() or 0.
662 static unsigned int adjust_size(unsigned int size, unsigned int mpu,
665 if (size < mpu)
666 size = mpu;
862 nl_dump(p, " mpu %u", tc->tc_mpu);