Home | History | Annotate | Download | only in tc

Lines Matching refs:mpu

37 		"... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
42 " mpu minimum packet size used in rate computations\n"
109 unsigned short mpu = 0;
128 } else if (matches(*argv, "mpu") == 0) {
130 if (get_u16(&mpu, *argv, 10)) {
131 explain1("mpu"); return -1;
217 opt.ceil.mpu = mpu;
218 opt.rate.mpu = mpu;
271 fprintf(f, "burst %s/%u mpu %s overhead %s ",
274 sprint_size(hopt->rate.mpu&0xFF, b2),
275 sprint_size((hopt->rate.mpu>>8)&0xFF, b3));
276 fprintf(f, "cburst %s/%u mpu %s overhead %s ",
279 sprint_size(hopt->ceil.mpu&0xFF, b2),
280 sprint_size((hopt->ceil.mpu>>8)&0xFF, b3));