diff options
author | Steve Shin <jonshin@cisco.com> | 2017-10-09 15:04:56 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-10-14 09:14:11 +0000 |
commit | b5518bedd95bea9c30cebcd5b0db76bd00f30a80 (patch) | |
tree | 1b076f5c34cb14c4dadb1cb120643ab8739bfe3e /dpdk/Makefile | |
parent | abc914b7da7ec7da9c6e5f4738b14d984a2edcb1 (diff) |
dpdk: patch to support bonded interface for MLX NIC
At present, creating bonding devices using --vdev is broken for PMD like
mlx5 as it is neither UIO nor VFIO based and hence PMD driver is unknown
to find_port_id_by_pci_addr().
This DPDK patch fixes parsing PCI ID from bonding device params by verifying
it in RTE PCI bus, rather than checking dev->kdrv.
Change-Id: If575f63ef31733102566610d769ddd212d74736a
Signed-off-by: Steve Shin <jonshin@cisco.com>
(cherry picked from commit 268e64e312257b0ab36e0d5b9124cc3f2a1841a7)
Diffstat (limited to 'dpdk/Makefile')
-rw-r--r-- | dpdk/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpdk/Makefile b/dpdk/Makefile index 4e0ad4f3..179e3565 100644 --- a/dpdk/Makefile +++ b/dpdk/Makefile @@ -25,7 +25,7 @@ DPDK_MLX5_PMD ?= n B := $(DPDK_BUILD_DIR) I := $(DPDK_INSTALL_DIR) DPDK_VERSION ?= 17.08 -PKG_SUFFIX ?= vpp1 +PKG_SUFFIX ?= vpp2 DPDK_BASE_URL ?= http://fast.dpdk.org/rel DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.xz DPDK_TAR_URL := $(DPDK_BASE_URL)/$(DPDK_TARBALL) |