Lines Matching refs:qopt
1398 struct tc_hfsc_qopt *qopt; in hfsc_init_qdisc() local
1403 if (!opt || nla_len(opt) < sizeof(*qopt)) in hfsc_init_qdisc()
1405 qopt = nla_data(opt); in hfsc_init_qdisc()
1407 q->defcls = qopt->defcls; in hfsc_init_qdisc()
1441 struct tc_hfsc_qopt *qopt; in hfsc_change_qdisc() local
1443 if (nla_len(opt) < sizeof(*qopt)) in hfsc_change_qdisc()
1445 qopt = nla_data(opt); in hfsc_change_qdisc()
1447 WRITE_ONCE(q->defcls, qopt->defcls); in hfsc_change_qdisc()
1525 struct tc_hfsc_qopt qopt; in hfsc_dump_qdisc() local
1527 qopt.defcls = READ_ONCE(q->defcls); in hfsc_dump_qdisc()
1528 if (nla_put(skb, TCA_OPTIONS, sizeof(qopt), &qopt)) in hfsc_dump_qdisc()