Lines Matching refs:ceil64
124 __u64 ceil64 = 0, rate64 = 0; in htb_parse_class_opt() local
178 if (ceil64) { in htb_parse_class_opt()
182 if (get_rate64(&ceil64, *argv)) { in htb_parse_class_opt()
217 if (!ceil64) in htb_parse_class_opt()
218 ceil64 = rate64; in htb_parse_class_opt()
221 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64; in htb_parse_class_opt()
228 cbuffer = ceil64 / get_hz() + mtu; in htb_parse_class_opt()
246 opt.cbuffer = tc_calc_xmittime(ceil64, cbuffer); in htb_parse_class_opt()
254 if (ceil64 >= (1ULL << 32)) in htb_parse_class_opt()
255 addattr_l(n, 1224, TCA_HTB_CEIL64, &ceil64, sizeof(ceil64)); in htb_parse_class_opt()
271 __u64 rate64, ceil64; in htb_print_opt() local
298 ceil64 = hopt->ceil.rate; in htb_print_opt()
300 RTA_PAYLOAD(tb[TCA_HTB_CEIL64]) >= sizeof(ceil64)) in htb_print_opt()
301 ceil64 = rta_getattr_u64(tb[TCA_HTB_CEIL64]); in htb_print_opt()
308 fprintf(f, "ceil %s ", sprint_rate(ceil64, b1)); in htb_print_opt()
309 cbuffer = tc_calc_xmitsize(ceil64, hopt->cbuffer); in htb_print_opt()