Lines Matching refs:queue_opts
355 static struct queue_opts { struct
367 } queue_opts; argument
564 struct queue_opts queue_opts; member
660 %type <v.queue_opts> queue_opts queue_opt queue_opts_l
1876 altqif : ALTQ interface queue_opts QUEUE qassign {
1900 queuespec : QUEUE STRING interface queue_opts qassign {
1937 queue_opts : {
1938 bzero(&queue_opts, sizeof queue_opts);
1939 queue_opts.priority = DEFAULT_PRIORITY;
1940 queue_opts.qlimit = DEFAULT_QLIMIT;
1941 queue_opts.scheduler.qtype = ALTQT_NONE;
1942 queue_opts.queue_bwspec.bw_percent = 100;
1945 { $$ = queue_opts; }
1947 bzero(&queue_opts, sizeof queue_opts);
1948 queue_opts.priority = DEFAULT_PRIORITY;
1949 queue_opts.qlimit = DEFAULT_QLIMIT;
1950 queue_opts.scheduler.qtype = ALTQT_NONE;
1951 queue_opts.queue_bwspec.bw_percent = 100;
1952 $$ = queue_opts;
1961 if (queue_opts.marker & QOM_BWSPEC) {
1965 queue_opts.marker |= QOM_BWSPEC;
1966 queue_opts.queue_bwspec = $2;
1969 if (queue_opts.marker & QOM_PRIORITY) {
1977 queue_opts.marker |= QOM_PRIORITY;
1978 queue_opts.priority = $2;
1981 if (queue_opts.marker & QOM_QLIMIT) {
1989 queue_opts.marker |= QOM_QLIMIT;
1990 queue_opts.qlimit = $2;
1993 if (queue_opts.marker & QOM_SCHEDULER) {
1997 queue_opts.marker |= QOM_SCHEDULER;
1998 queue_opts.scheduler = $1;
2001 if (queue_opts.marker & QOM_TBRSIZE) {
2009 queue_opts.marker |= QOM_TBRSIZE;
2010 queue_opts.tbrsize = $2;