Lines Matching full:ceil
41 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n" in explain()
47 " ceil definite upper class rate (no borrows) {rate}\n" in explain()
48 " cburst burst but for ceil {computed}\n" in explain()
176 } else if (strcmp(*argv, "ceil") == 0) { in htb_parse_class_opt()
179 fprintf(stderr, "Double \"ceil\" spec\n"); in htb_parse_class_opt()
183 explain1("ceil"); in htb_parse_class_opt()
216 /* if ceil params are missing, use the same as rate */ in htb_parse_class_opt()
221 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64; in htb_parse_class_opt()
230 opt.ceil.overhead = overhead; in htb_parse_class_opt()
233 opt.ceil.mpu = mpu; in htb_parse_class_opt()
242 if (tc_calc_rtable(&opt.ceil, ctab, ccell_log, mtu, linklayer) < 0) { in htb_parse_class_opt()
243 fprintf(stderr, "htb: failed to calculate ceil rate table.\n"); in htb_parse_class_opt()
298 ceil64 = hopt->ceil.rate; in htb_print_opt()
308 fprintf(f, "ceil %s ", sprint_rate(ceil64, b1)); in htb_print_opt()
320 1<<hopt->ceil.cell_log, in htb_print_opt()
321 sprint_size(hopt->ceil.mpu, b2)); in htb_print_opt()