diff options
author | Andy Gospodarek <gospo@broadcom.com> | 2019-11-12 17:55:01 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-11-14 19:31:50 +0000 |
commit | c3731ac89ddefe0b212511aeeb6bc116a1220816 (patch) | |
tree | 4be2d338f8fc5342261c202e23430e051f2973e7 /src/plugins/dpdk/device/format.c | |
parent | f41244f423a44c6d295895b011eec4bbeef08a8d (diff) |
dpdk: Enable bnxt PMD
This adds support to compile the bnxt PMD that supports Broadcom's
10/25/40/50/100/200 Gbps NICs. Tested with modified DPDK driver on
x86_64 and aarch64 targets that is pending upstream acceptance, but
should compile just fine today.
Type: feature
Signed-off-by: Andy Gospodarek <gospo@broadcom.com>
Change-Id: I735a991c4cae4fa77e5605094facea54b781a1db
Diffstat (limited to 'src/plugins/dpdk/device/format.c')
-rw-r--r-- | src/plugins/dpdk/device/format.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/dpdk/device/format.c b/src/plugins/dpdk/device/format.c index 942def63b0a..292c083fca5 100644 --- a/src/plugins/dpdk/device/format.c +++ b/src/plugins/dpdk/device/format.c @@ -362,6 +362,10 @@ format_dpdk_device_type (u8 * s, va_list * args) dev_type = "Microsoft Hyper-V Netvsc"; break; + case VNET_DPDK_PMD_BNXT: + dev_type = "Broadcom NetXtreme E/S-Series"; + break; + default: case VNET_DPDK_PMD_UNKNOWN: dev_type = "### UNKNOWN ###"; |