Lines Matching refs:upperlimit
420 %token ALTQ CBQ PRIQ HFSC BANDWIDTH TBRSIZE LINKSHARE REALTIME UPPERLIMIT
1593 | UPPERLIMIT bandwidth {
1594 if (hfsc_opts.upperlimit.used) {
1595 yyerror("upperlimit already specified");
1598 hfsc_opts.upperlimit.m2 = $2;
1599 hfsc_opts.upperlimit.used = 1;
1601 | UPPERLIMIT '(' bandwidth comma number comma bandwidth ')'
1603 if (hfsc_opts.upperlimit.used) {
1604 yyerror("upperlimit already specified");
1607 hfsc_opts.upperlimit.m1 = $3;
1608 hfsc_opts.upperlimit.d = $5;
1609 hfsc_opts.upperlimit.m2 = $7;
1610 hfsc_opts.upperlimit.used = 1;
4999 { "upperlimit", UPPERLIMIT},