HomeSort by: relevance | last modified time | path
    Searched defs:q_stats (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/altq/
altq_fifoq.h 48 } q_stats; member in struct:fifoq_state
altq_fifoq.c 209 struct fifoq_getstats *q_stats; local in function:fifoqioctl
211 q_stats = (struct fifoq_getstats *)addr;
212 if ((q = altq_lookup(q_stats->iface.fifoq_ifname,
218 q_stats->q_len = q->q_len;
219 q_stats->q_limit = q->q_limit;
220 q_stats->xmit_cnt = q->q_stats.xmit_cnt;
221 q_stats->drop_cnt = q->q_stats.drop_cnt;
222 q_stats->period = q->q_stats.period
    [all...]
altq_rio.h 49 struct redstats q_stats[RIO_NDROPPREC]; member in struct:rio_stats
122 struct redstats q_stats[RIO_NDROPPREC]; /* statistics */ member in struct:rio
altq_blue.c 261 struct blue_stats *q_stats; local in function:blueioctl
264 q_stats = (struct blue_stats *)addr;
265 if ((rqp = altq_lookup(q_stats->iface.blue_ifname,
271 q_stats->q_len = qlen(rqp->rq_q);
272 q_stats->q_limit = qlimit(rqp->rq_q);
275 q_stats->q_pmark = rp->blue_pmark;
276 q_stats->xmit_packets = rp->blue_stats.xmit_packets;
277 q_stats->xmit_bytes = rp->blue_stats.xmit_bytes;
278 q_stats->drop_packets = rp->blue_stats.drop_packets;
279 q_stats->drop_bytes = rp->blue_stats.drop_bytes
    [all...]
altq_rio.c 307 memcpy(sp, &rp->q_stats[i], sizeof(struct redstats));
413 rp->q_stats[dpindex].drop_unforced++;
415 rp->q_stats[dpindex].drop_forced++;
416 PKTCNTR_ADD(&rp->q_stats[dpindex].drop_cnt, m_pktlen(m));
437 PKTCNTR_ADD(&rp->q_stats[dpindex].xmit_cnt, m_pktlen(m));
595 struct rio_stats *q_stats; local in function:rioioctl
599 q_stats = (struct rio_stats *)addr;
600 if ((rqp = altq_lookup(q_stats->iface.rio_ifname,
608 q_stats->q_limit = qlimit(rqp->rq_q);
609 q_stats->weight = rp->rio_weight
    [all...]
altq_red.c 861 struct red_stats *q_stats; local in function:redioctl
864 q_stats = (struct red_stats *)addr;
865 if ((rqp = altq_lookup(q_stats->iface.red_ifname,
871 q_stats->q_len = qlen(rqp->rq_q);
872 q_stats->q_limit = qlimit(rqp->rq_q);
875 q_stats->q_avg = rp->red_avg >> rp->red_wshift;
876 q_stats->xmit_cnt = rp->red_stats.xmit_cnt;
877 q_stats->drop_cnt = rp->red_stats.drop_cnt;
878 q_stats->drop_forced = rp->red_stats.drop_forced;
879 q_stats->drop_unforced = rp->red_stats.drop_unforced
    [all...]

Completed in 23 milliseconds