[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20260211170725.1514427-3-victor@mojatatu.com>
Date: Wed, 11 Feb 2026 14:07:24 -0300
From: Victor Nogueira <victor@...atatu.com>
To: dsahern@...nel.org,
stephen@...workplumber.org
Cc: jhs@...atatu.com,
deren.teo@...look.com,
andrew@...n.ch,
netdev@...r.kernel.org
Subject: [PATCH iproute2 2/3] tc: Add JSON output support to QFQ
Since qdisc core already assumes all qdiscs are able to output JSON,
add JSON output support to QFQ.
Fixes: c91d262f414d ("tc: jsonify qdisc core")
Signed-off-by: Victor Nogueira <victor@...atatu.com>
---
tc/q_qfq.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tc/q_qfq.c b/tc/q_qfq.c
index d4c0a591..04061fcc 100644
--- a/tc/q_qfq.c
+++ b/tc/q_qfq.c
@@ -90,13 +90,13 @@ static int qfq_print_opt(const struct qdisc_util *qu, FILE *f, struct rtattr *op
parse_rtattr_nested(tb, TCA_QFQ_MAX, opt);
if (tb[TCA_QFQ_WEIGHT]) {
- fprintf(f, "weight %u ",
- rta_getattr_u32(tb[TCA_QFQ_WEIGHT]));
+ print_uint(PRINT_ANY, "weight", "weight %u ",
+ rta_getattr_u32(tb[TCA_QFQ_WEIGHT]));
}
if (tb[TCA_QFQ_LMAX]) {
- fprintf(f, "maxpkt %u ",
- rta_getattr_u32(tb[TCA_QFQ_LMAX]));
+ print_uint(PRINT_ANY, "maxpkt", "maxpkt %u ",
+ rta_getattr_u32(tb[TCA_QFQ_LMAX]));
}
return 0;
--
2.52.0
Powered by blists - more mailing lists