From 942b9803f842fc520e9c7518ff2fcffbb5d0f14e Mon Sep 17 00:00:00 2001 From: Christian Hopps Date: Tue, 14 Jul 2020 09:41:43 -0400 Subject: dpdk-ipsec: fix show output Fix the shown crypto inflight counts which were reversed. Also improve a couple error descriptions to tell them apart when viewed. Type: fix Signed-off-by: Christian Hopps Change-Id: I6d4054c64aa842658cfcde8969c7aa48f6d21207 --- src/plugins/dpdk/ipsec/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/dpdk/ipsec/cli.c') diff --git a/src/plugins/dpdk/ipsec/cli.c b/src/plugins/dpdk/ipsec/cli.c index a2edc8b96c0..fb98d2789c6 100644 --- a/src/plugins/dpdk/ipsec/cli.c +++ b/src/plugins/dpdk/ipsec/cli.c @@ -28,7 +28,7 @@ format_crypto_resource (u8 * s, va_list * args) crypto_resource_t *res = vec_elt_at_index (dcm->resource, res_idx); - s = format (s, "%U thr_id %3d qp %2u enc_inflight %u, dec_inflights %u\n", + s = format (s, "%U thr_id %3d qp %2u dec_inflight %u, enc_inflights %u\n", format_white_space, indent, (i16) res->thread_idx, res->qp_id, res->inflights[0], res->inflights[1]); -- cgit 1.2.3-korg