Lines Matching refs:qopt_ext
207 struct tc_sfq_qopt_v1 *qopt_ext = NULL; in sfq_print_opt() local
217 if (RTA_PAYLOAD(opt) >= sizeof(*qopt_ext)) in sfq_print_opt()
218 qopt_ext = RTA_DATA(opt); in sfq_print_opt()
222 if (qopt_ext && qopt_ext->depth) in sfq_print_opt()
223 fprintf(f, "depth %u ", qopt_ext->depth); in sfq_print_opt()
224 if (qopt_ext && qopt_ext->headdrop) in sfq_print_opt()
233 if (qopt_ext && qopt_ext->qth_min) { in sfq_print_opt()
234 fprintf(f, "\n ewma %u ", qopt_ext->Wlog); in sfq_print_opt()
236 sprint_size(qopt_ext->qth_min, b2), in sfq_print_opt()
237 sprint_size(qopt_ext->qth_max, b3), in sfq_print_opt()
238 qopt_ext->max_P / pow(2, 32)); in sfq_print_opt()
239 if (qopt_ext->flags & TC_RED_ECN) in sfq_print_opt()
243 qopt_ext->stats.prob_mark, in sfq_print_opt()
244 qopt_ext->stats.prob_mark_head, in sfq_print_opt()
245 qopt_ext->stats.prob_drop); in sfq_print_opt()
247 qopt_ext->stats.forced_mark, in sfq_print_opt()
248 qopt_ext->stats.forced_mark_head, in sfq_print_opt()
249 qopt_ext->stats.forced_drop); in sfq_print_opt()