Home
last modified time | relevance | path

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

/freebsd/sbin/pfctl/
H A Dpfctl_altq.c748 opts = &pa->pq_u.hfsc_opts; in eval_pfqueue_hfsc()
764 if (parent->pa.pq_u.hfsc_opts.flags & HFCF_DEFAULTCLASS) { in eval_pfqueue_hfsc()
770 if (pa->pq_u.hfsc_opts.flags & HFCF_DEFAULTCLASS) in eval_pfqueue_hfsc()
829 sc.m1 = parent->pa.pq_u.hfsc_opts.lssc_m1; in eval_pfqueue_hfsc()
830 sc.d = parent->pa.pq_u.hfsc_opts.lssc_d; in eval_pfqueue_hfsc()
831 sc.m2 = parent->pa.pq_u.hfsc_opts.lssc_m2; in eval_pfqueue_hfsc()
953 opts = &a->pq_u.hfsc_opts; in print_hfsc_opts()
957 rtsc = &qopts->data.hfsc_opts.realtime; in print_hfsc_opts()
958 lssc = &qopts->data.hfsc_opts.linkshare; in print_hfsc_opts()
959 ulsc = &qopts->data.hfsc_opts.upperlimit; in print_hfsc_opts()
[all …]
H A Dparse.y358 static struct node_hfsc_opts hfsc_opts; variable
497 struct node_hfsc_opts hfsc_opts; member
576 %type <v.hfsc_opts> hfscopts_list hfscopts_item hfsc_opts
2054 bzero(&$$.data.hfsc_opts,
2057 | HFSC '(' hfsc_opts ')' {
2059 $$.data.hfsc_opts = $3;
2131 hfsc_opts : {
2132 bzero(&hfsc_opts,
2136 $$ = hfsc_opts;
2145 if (hfsc_opts.linkshare.used) {
[all …]
H A Dpfctl_parser.h195 struct node_hfsc_opts hfsc_opts; member
/freebsd/sys/netpfil/pf/
H A Dpf_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
H A Dpf_ioctl.c1624 #define ASSIGN_OPT(x) exported_q->pq_u.hfsc_opts.x = q->pq_u.hfsc_opts.x in pf_export_kaltq()
1625 #define ASSIGN_OPT_SATU32(x) exported_q->pq_u.hfsc_opts.x = \ in pf_export_kaltq()
1626 SATU32(q->pq_u.hfsc_opts.x) in pf_export_kaltq()
1730 #define ASSIGN_OPT(x) q->pq_u.hfsc_opts.x = imported_q->pq_u.hfsc_opts.x in pf_import_kaltq()
/freebsd/sys/net/altq/
H A Daltq_hfsc.c209 opts = &a->pq_u.hfsc_opts; in hfsc_add_queue()