From: Victor Julien Date: Mon, 8 May 2023 09:56:11 +0000 (+0200) Subject: dpdk: minor output fixup X-Git-Tag: suricata-7.0.0-rc2~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d016fe3edcb2f787116ffcc23ef9d66cdbbb31b;p=thirdparty%2Fsuricata.git dpdk: minor output fixup Thanks to Josh Soref. --- 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);