Home | History | Annotate | Download | only in tc

Lines Matching defs:mtu

41 		"                      [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
49 " mtu max packet size we create rate map for {1600}\n"
119 unsigned int mtu = 1600; /* eth packet len */
133 } else if (matches(*argv, "mtu") == 0) {
135 if (get_u32(&mtu, *argv, 10)) {
136 explain1("mtu"); return -1;
223 /* compute minimal allowed burst from rate; mtu is added here to make
224 sute that buffer is larger than mtu and to have some safeguard space */
226 buffer = rate64 / get_hz() + mtu;
228 cbuffer = ceil64 / get_hz() + mtu;
236 if (tc_calc_rtable(&opt.rate, rtab, cell_log, mtu, linklayer) < 0) {
242 if (tc_calc_rtable(&opt.ceil, ctab, ccell_log, mtu, linklayer) < 0) {