Home
last modified time | relevance | path

Searched refs:hfsc_opts (Results 1 – 6 of 6) sorted by relevance

/freebsd-13-stable/sbin/pfctl/
HDpfctl_altq.c756 opts = &pa->pq_u.hfsc_opts;
772 if (parent->pa.pq_u.hfsc_opts.flags & HFCF_DEFAULTCLASS) {
778 if (pa->pq_u.hfsc_opts.flags & HFCF_DEFAULTCLASS)
837 sc.m1 = parent->pa.pq_u.hfsc_opts.lssc_m1;
838 sc.d = parent->pa.pq_u.hfsc_opts.lssc_d;
839 sc.m2 = parent->pa.pq_u.hfsc_opts.lssc_m2;
961 opts = &a->pq_u.hfsc_opts;
965 rtsc = &qopts->data.hfsc_opts.realtime;
966 lssc = &qopts->data.hfsc_opts.linkshare;
967 ulsc = &qopts->data.hfsc_opts.upperlimit;
[all …]
HDparse.y317 static struct node_hfsc_opts hfsc_opts; variable
441 struct node_hfsc_opts hfsc_opts; member
518 %type <v.hfsc_opts> hfscopts_list hfscopts_item hfsc_opts
1795 bzero(&$$.data.hfsc_opts,
1798 | HFSC '(' hfsc_opts ')' {
1800 $$.data.hfsc_opts = $3;
1872 hfsc_opts : {
1873 bzero(&hfsc_opts,
1877 $$ = hfsc_opts;
1886 if (hfsc_opts.linkshare.used) {
[all …]
HDpfctl_parser.h179 struct node_hfsc_opts hfsc_opts; member
/freebsd-13-stable/sys/netpfil/pf/
HDpf_altq.h151 struct hfsc_opts_v0 hfsc_opts; member
182 struct hfsc_opts_v1 hfsc_opts; member
218 struct hfsc_opts_v1 hfsc_opts; member
HDpf_ioctl.c1360 #define ASSIGN_OPT(x) exported_q->pq_u.hfsc_opts.x = q->pq_u.hfsc_opts.x in pf_export_kaltq()
1361 #define ASSIGN_OPT_SATU32(x) exported_q->pq_u.hfsc_opts.x = \ in pf_export_kaltq()
1362 SATU32(q->pq_u.hfsc_opts.x) in pf_export_kaltq()
1466 #define ASSIGN_OPT(x) q->pq_u.hfsc_opts.x = imported_q->pq_u.hfsc_opts.x in pf_import_kaltq()
/freebsd-13-stable/sys/net/altq/
HDaltq_hfsc.c208 opts = &a->pq_u.hfsc_opts; in hfsc_add_queue()