diff --git a/ChangeLog b/ChangeLog index 2926523fd..18668f249 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-02-14 ipfixprobe-4.16.0 + * Parser: Fix packet parsing issue when --with-pcap is enabled + * DPDK: Increase default mempool size from 4096 to 8192 + * DPDK: Set RX queue size as (mempool size / 2) + * DPDK: Fix multiple DPDK telemetry files registration + 2024-12-27 ipfixprobe-4.15.0 * dpdk: Add DPDK telemetry * dpdk: add DPDK port telemetry diff --git a/NEWS b/NEWS index c7b558a2e..85d678bfd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +2025-02-06 (Pavel Siska): Parser - Fix packet parsing issue when --with-pcap is enabled Ensure correct packet parsing for input modules like dpdk, dpdk-ring, and nfb when compiled with --with-pcap. Previously, the parser relied on opt->datalink, which these inputs do not set, leading to incorrect layer detection. Now, it correctly defaults to Ethernet when necessary. +2025-02-06 (Pavel Siska): Dpdk - increase default mempool size from 4096 to 8192 +2025-02-06 (Pavel Siska): Dpdk - set RX queue size as (mempool size / 2) +2025-01-02 (Pavel Siska): dpdk: fix multiple dpdk telemetry files registration + 2024-12-27 (Pavel Siska): dpdk: Add DPDK telemetry 2024-12-27 (Pavel Siska): dpdk: add DPDK port telemetry 2024-12-27 (Pavel Siska): dpdk: add compatible definition macro to dpdkCompact Add RTE_ETH_RSS_GENEVE macro diff --git a/configure.ac b/configure.ac index 0ebec7207..0ad037aac 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([ipfixprobe], [4.15.0], [nemea@cesnet.cz]) +AC_INIT([ipfixprobe], [4.16.0], [nemea@cesnet.cz]) AC_CONFIG_SRCDIR([main.cpp]) AC_CONFIG_HEADERS([config.h])