diff options
author | Matthew Smith <mgsmith@netgate.com> | 2021-06-09 07:52:11 -0500 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2021-06-22 18:09:07 +0000 |
commit | 6fc9cb2ed5f993901ce134bf8f1ff1c5d64a163c (patch) | |
tree | 68edadb8dbcd2ee4c6362a3aa5f79e224d38d4a9 /src/plugins/dpdk/device/init.c | |
parent | 1eb9cd36b9d343fdbdb4f9b1857a02d78f9a4b2e (diff) |
dpdk: enable igc devices
Type: improvement
Set port type and supported flow actions on 2.5G Intel NICs which are
managed by the igc PMD.
Change-Id: Id144eaa158e24a3f10effb6b517d1c62fba0d2e8
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'src/plugins/dpdk/device/init.c')
-rw-r--r-- | src/plugins/dpdk/device/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 8b07e00dd2d..cf0203d187d 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -452,6 +452,7 @@ dpdk_lib_init (dpdk_main_t * dm) xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE; case VNET_DPDK_PMD_E1000EM: case VNET_DPDK_PMD_IGB: + case VNET_DPDK_PMD_IGC: case VNET_DPDK_PMD_IXGBE: case VNET_DPDK_PMD_ICE: xd->port_type = port_type_from_speed_capa (&dev_info); |