Lines Matching refs:stats
79 struct tc_stats *stats; member
106 struct tc_stats *st = e->stats; in est_timer()
122 e->stats->pps = (e->avpps+0x1FF)>>10; in est_timer()
130 int qdisc_new_estimator(struct tc_stats *stats, struct rtattr *opt) in qdisc_new_estimator() argument
147 est->stats = stats; in qdisc_new_estimator()
149 est->last_bytes = stats->bytes; in qdisc_new_estimator()
150 est->avbps = stats->bps<<5; in qdisc_new_estimator()
151 est->last_packets = stats->packets; in qdisc_new_estimator()
152 est->avpps = stats->pps<<10; in qdisc_new_estimator()
168 void qdisc_kill_estimator(struct tc_stats *stats) in qdisc_kill_estimator() argument
177 if (est->stats != stats) { in qdisc_kill_estimator()