diff options
author | Damjan Marion <damarion@cisco.com> | 2021-12-28 20:32:20 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-12-31 13:03:14 +0000 |
commit | a2b7a02d9c3e03b4923f4153714f43e361960cf0 (patch) | |
tree | 57092a8ee7cc346dfe5a91966e91358a4b30b0d9 /src/plugins/dpdk/device/dpdk.h | |
parent | 03e40e6230bf14aebf7b8d058ca9a32fe3d4e4fc (diff) |
vlib: remove external thread management support
Now DPDK have API to register external threads so we can remove this
mess...
Type: improvement
Change-Id: I71a21f0cd94bd668aa406710c75a0bcc63fdc840
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dpdk/device/dpdk.h')
-rw-r--r-- | src/plugins/dpdk/device/dpdk.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/plugins/dpdk/device/dpdk.h b/src/plugins/dpdk/device/dpdk.h index 51f80a80462..cc7305dbdc4 100644 --- a/src/plugins/dpdk/device/dpdk.h +++ b/src/plugins/dpdk/device/dpdk.h @@ -22,27 +22,12 @@ #include <rte_config.h> -#include <rte_common.h> -#include <rte_dev.h> -#include <rte_memory.h> #include <rte_eal.h> -#include <rte_per_lcore.h> -#include <rte_cycles.h> -#include <rte_lcore.h> -#include <rte_per_lcore.h> -#include <rte_interrupts.h> -#include <rte_pci.h> +#include <rte_bus_pci.h> #include <rte_bus_vmbus.h> -#include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_ring.h> -#include <rte_mempool.h> -#include <rte_mbuf.h> #include <rte_version.h> -#include <rte_sched.h> #include <rte_net.h> -#include <rte_bus_pci.h> -#include <rte_flow.h> #include <vnet/devices/devices.h> @@ -313,13 +298,6 @@ typedef struct #define DPDK_MAX_SIMD_BITWIDTH_256 256 #define DPDK_MAX_SIMD_BITWIDTH_512 512 - /* Required config parameters */ - u8 coremask_set_manually; - u8 nchannels_set_manually; - u32 coremask; - u32 nchannels; - u32 num_crypto_mbufs; - /* * format interface names ala xxxEthernet%d/%d/%d instead of * xxxEthernet%x/%x/%x. |