]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
dpdk: minor output fixup
authorVictor Julien <vjulien@oisf.net>
Mon, 8 May 2023 09:56:11 +0000 (11:56 +0200)
committerVictor Julien <vjulien@oisf.net>
Mon, 8 May 2023 09:59:34 +0000 (11:59 +0200)
Thanks to Josh Soref.

src/runmode-dpdk.c

index 947e1d7a861f8a2be1b9062ec46174d9d206f88d..d2ca7207c5614bf22c09bb39637f06749e7bbe51 100644 (file)
@@ -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);