Home | History | Annotate | Download | only in tc

Lines Matching full:ceil

41 		"                      [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
47 " ceil definite upper class rate (no borrows) {rate}\n"
48 " cburst burst but for ceil {computed}\n"
178 } else if (strcmp(*argv, "ceil") == 0) {
181 fprintf(stderr, "Double \"ceil\" spec\n");
185 explain1("ceil");
218 /* if ceil params are missing, use the same as rate */
223 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64;
232 opt.ceil.overhead = overhead;
235 opt.ceil.mpu = mpu;
244 if (tc_calc_rtable(&opt.ceil, ctab, ccell_log, mtu, linklayer) < 0) {
245 fprintf(stderr, "htb: failed to calculate ceil rate table.\n");
300 ceil64 = hopt->ceil.rate;
310 fprintf(f, "ceil %s ", sprint_rate(ceil64, b1));
323 1<<hopt->ceil.cell_log,
324 sprint_size(hopt->ceil.mpu&0xFF, b2),
325 sprint_size((hopt->ceil.mpu>>8)&0xFF, b3));