Home | History | Annotate | Download | only in altqstat

Lines Matching defs:get_stats

51 	struct fifoq_getstats get_stats;
58 strlcpy(get_stats.iface.fifoq_ifname, ifname,
59 sizeof(get_stats.iface.fifoq_ifname));
66 if (ioctl(fd, FIFOQ_GETSTATS, &get_stats) < 0)
73 get_stats.q_len, get_stats.q_limit, get_stats.period);
75 (ull)get_stats.xmit_cnt.packets,
76 (ull)get_stats.xmit_cnt.bytes,
77 (ull)get_stats.drop_cnt.packets,
78 (ull)get_stats.drop_cnt.bytes);
80 rate2str(calc_rate(get_stats.xmit_cnt.bytes,
83 last_bytes = get_stats.xmit_cnt.bytes;