Added new armv8 machine targets.
Added new armv8 machine targets:
Added Windows Support.
Added Windows support to build Hello World sample application.
Added Stack Library.
Added a new stack library and APIs for configuration and use of a bounded stack of pointers. The API provides multi-thread safe push and pop operations that can operate on one or more pointers per operation.
The library supports two stack implementations: standard (lock-based) and lock-free. The lock-free implementation is currently limited to x86-64 platforms.
Added Lock-Free Stack Mempool Handler.
Added a new lock-free stack handler, which uses the newly added stack library.
Added RCU library.
Added RCU library supporting a quiescent state based memory reclamation method. This library helps identify the quiescent state of the reader threads so that the writers can free the memory associated with the lock free data structures.
Updated KNI module and PMD.
Updated the KNI kernel module to set the max_mtu according to the given initial MTU size. Without it, the maximum MTU was 1500.
Updated the KNI PMD driver to set the mbuf_size and MTU based on the given mb-pool. This provide the ability to pass jumbo frames if the mb-pool contains a suitable buffer size.
Added the AF_XDP PMD.
Added a Linux-specific PMD driver for AF_XDP. This PMD can create an AF_XDP socket and bind it to a specific netdev queue. It allows a DPDK application to send and receive raw packets through the socket which would bypass the kernel network stack to achieve high performance packet processing.
Added a net PMD NFB.
Added the new nfb net driver for Netcope NFB cards. See the NFB poll mode driver library NIC guide for more details on this new driver.
Added IPN3KE net PMD.
Added the new ipn3ke net driver for the IntelĀ® FPGA PAC (Programmable Acceleration Card) N3000. See the IPN3KE Poll Mode Driver NIC guide for more details on this new driver.
In addition ifpga_rawdev was also updated to support IntelĀ® FPGA PAC N3000 with SPI interface access, I2C Read/Write, and Ethernet PHY configuration.
Updated Solarflare network PMD.
Updated the Solarflare sfc_efx driver with changes including:
Updated Mellanox mlx4 driver.
Updated Mellanox mlx4 driver with new features and improvements, including:
- Added firmware version reading.
- Added support for secondary processes.
- Added support of per-process device registers. Reserving identical VA space is not needed anymore.
- Added support for multicast address list interfaces.
Updated Mellanox mlx5 driver.
Updated Mellanox mlx5 driver with new features and improvements, including:
Added firmware version reading.
Added support for new naming scheme of representor.
Added support for new PCI device DMA map/unmap API.
Added support for multiport InfiniBand device.
Added control of excessive memory pinning by kernel.
Added support of DMA memory registration by secondary process.
Added support of per-process device registers. Reserving identical VA space is not required anymore.
Added support for jump action for both E-Switch and NIC.
Added Support for multiple rte_flow groups in NIC steering.
- Flow engine re-designed to support large scale deployments. this includes:
- Support millions of offloaded flow rules.
- Fast flow insertion and deletion up to 1M flow update per second.
Renamed avf to iavf.
Renamed Intel Ethernet Adaptive Virtual Function driver avf to iavf, which includes the directory name, lib name, filenames, makefile, docs, macros, functions, structs and any other strings in the code.
Updated the enic driver.
Updated enic driver with new features and improvements, including:
Updated the ixgbe driver.
Updated the ixgbe driver to add promiscuous mode support for the VF.
Updated the ice driver.
Updated ice driver with new features and improvements, including:
Updated the i40e driver.
New features for PF in the i40e driver:
Updated the ENETC driver.
Updated ENETC driver with new features and improvements, including:
Updated the atlantic PMD.
Added MACSEC hardware offload experimental API.
Updated the Intel QuickAssist Technology (QAT) compression PMD.
Updated the Intel QuickAssist Technology (QAT) compression PMD to simplify, and make more robust, the handling of Scatter Gather Lists (SGLs) with more than 16 segments.
Updated the QuickAssist Technology (QAT) symmetric crypto PMD.
Added support for AES-XTS with 128 and 256 bit AES keys.
Added Intel QuickAssist Technology PMD for asymmetric crypto.
Added a new QAT Crypto PMD which provides asymmetric cryptography algorithms. Modular exponentiation and modular multiplicative inverse algorithms were added in this release.
Updated AESNI-MB PMD.
Added support for out-of-place operations.
Updated the IPsec library.
The IPsec library has been updated with AES-CTR and 3DES-CBC cipher algorithms support. The related ipsec-secgw test scripts have been added.
Updated the testpmd application.
Improved the testpmd application performance on ARM platform. For macswap forwarding mode, NEON intrinsics are now used to do swap to save CPU cycles.
Updated power management library.
Added support for Intel Speed Select Technology - Base Frequency (SST-BF). The rte_power_get_capabilities struct now has a bit in it’s returned mask indicating if it is a high frequency core.
Updated distributor sample application.
Added support for the Intel SST-BF feature so that the distributor core is pinned to a high frequency core if available.
ethdev: Additional fields in rte_eth_dev_info.
The rte_eth_dev_info structure has had two extra fields added: min_mtu and max_mtu. Each of these are of type uint16_t. The values of these fields can be set specifically by the PMD drivers as supported values can vary from device to device.
cryptodev: in 18.08 a new structure rte_crypto_asym_op was introduced and included into rte_crypto_op. As the rte_crypto_asym_op structure was defined as cache-line aligned that caused unintended changes in rte_crypto_op structure layout and alignment. Remove cache-line alignment for rte_crypto_asym_op to restore expected rte_crypto_op layout and alignment.
timer: rte_timer_subsystem_init now returns success or failure to reflect whether it was able to allocate memory.
On x86 platforms, AVX512 support is disabled with binutils 2.31.
Due to a defect in binutils 2.31 AVX512 support is disabled. DPDK defect: https://bugs.dpdk.org/show_bug.cgi?id=249 GCC defect: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90028
No software AES-XTS implementation.
There are currently no cryptodev software PMDs available which implement support for the AES-XTS algorithm, so this feature can only be used if compatible hardware and an associated PMD is available.