summaryrefslogtreecommitdiffstats
path: root/tc
diff options
context:
space:
mode:
authorosdl.net!shemminger <osdl.net!shemminger>2004-09-29 18:35:48 +0000
committerosdl.net!shemminger <osdl.net!shemminger>2004-09-29 18:35:48 +0000
commite914a5c41afc9d7eb22835080ffbdc2c7c338e64 (patch)
treeca400fd418f7a11bb3cc651dfab1b9c8343b622c /tc
parent8789183ac42e4a2d367fa80bfccff08d10767966 (diff)
reqs was rejected by kernel due to possible API breakage.
(Logical change 1.91)
Diffstat (limited to 'tc')
-rw-r--r--tc/tc_qdisc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tc/tc_qdisc.c b/tc/tc_qdisc.c
index 7fac569e..6cf08d87 100644
--- a/tc/tc_qdisc.c
+++ b/tc/tc_qdisc.c
@@ -177,9 +177,9 @@ void print_tcstats_attr(FILE *fp, const struct rtattr *rta)
memset(&st, 0, sizeof(st));
memcpy(&st, RTA_DATA(rta), MIN(RTA_PAYLOAD(rta), sizeof(st)));
- fprintf(fp, " Sent %llu bytes %u pkts (dropped %u, overlimits %u requeues %u) ",
+ fprintf(fp, " Sent %llu bytes %u pkts (dropped %u, overlimits %u) ",
(unsigned long long)st.bytes, st.packets, st.drops,
- st.overlimits, st.reqs);
+ st.overlimits);
if (st.bps || st.pps || st.qlen || st.backlog) {
fprintf(fp, "\n ");