[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180710210558.20278-27-stephen@networkplumber.org>
Date: Tue, 10 Jul 2018 14:05:53 -0700
From: Stephen Hemminger <stephen@...workplumber.org>
To: netdev@...r.kernel.org
Cc: Stephen Hemminger <sthemmin@...rosoft.com>,
Stephen Hemminger <stephen@...workplumber.org>
Subject: [PATCH v2 iproute2-next 26/31] tc/cbs: convert to JSON output
From: Stephen Hemminger <sthemmin@...rosoft.com>
Signed-off-by: Stephen Hemminger <stephen@...workplumber.org>
---
tc/q_cbs.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tc/q_cbs.c b/tc/q_cbs.c
index a2ffb1db3852..1518a79cd733 100644
--- a/tc/q_cbs.c
+++ b/tc/q_cbs.c
@@ -125,11 +125,11 @@ static int cbs_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
if (RTA_PAYLOAD(tb[TCA_CBS_PARMS]) < sizeof(*qopt))
return -1;
- fprintf(f, "hicredit %d ", qopt->hicredit);
- fprintf(f, "locredit %d ", qopt->locredit);
- fprintf(f, "sendslope %d ", qopt->sendslope);
- fprintf(f, "idleslope %d ", qopt->idleslope);
- fprintf(f, "offload %d ", qopt->offload);
+ print_uint(PRINT_ANY, "hicredit", "hicredit %u ", qopt->hicredit);
+ print_uint(PRINT_ANY, "locredit", "locredit %u", qopt->locredit);
+ print_uint(PRINT_ANY, "sendslope", "sendslope %u", qopt->sendslope);
+ print_uint(PRINT_ANY, "idleslope", "idleslope %u", qopt->idleslope);
+ print_uint(PRINT_ANY, "offload", "offload %u", qopt->offload);
return 0;
}
--
2.18.0
Powered by blists - more mailing lists