From 8d016fe3edcb2f787116ffcc23ef9d66cdbbb31b Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 8 May 2023 11:56:11 +0200 Subject: [PATCH] dpdk: minor output fixup Thanks to Josh Soref. --- src/runmode-dpdk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runmode-dpdk.c b/src/runmode-dpdk.c index 947e1d7a86..d2ca7207c5 100644 --- a/src/runmode-dpdk.c +++ b/src/runmode-dpdk.c @@ -1055,8 +1055,8 @@ static int DeviceConfigureQueues(DPDKIfaceConfig *iconf, const struct rte_eth_de rxq_conf.rx_thresh.wthresh = 0; rxq_conf.rx_free_thresh = 0; rxq_conf.rx_drop_en = 0; - SCLogPerf("%s: rx queue setup: queue:%d port:%d rx_desc:%d tx_desc:%d rx: htresh: %d " - "pthresh %d wtresh %d free_tresh %d drop_en %d offloads %lu", + SCLogPerf("%s: rx queue setup: queue:%d port:%d rx_desc:%d tx_desc:%d rx: hthresh: %d " + "pthresh %d wthresh %d free_thresh %d drop_en %d offloads %lu", iconf->iface, queue_id, iconf->port_id, iconf->nb_rx_desc, iconf->nb_tx_desc, rxq_conf.rx_thresh.hthresh, rxq_conf.rx_thresh.pthresh, rxq_conf.rx_thresh.wthresh, rxq_conf.rx_free_thresh, rxq_conf.rx_drop_en, rxq_conf.offloads);