From 20593254eb373ea6ea6e17648cf152a0c5e41603 Mon Sep 17 00:00:00 2001 From: Satish Patel Date: Tue, 19 Oct 2021 22:58:29 -0400 Subject: [PATCH] DPDK required libdpdk-dev package to bind port Without this package ovs failed to bind dpdk interface to ovs provider bridge. This is ubuntu where they split dependencies libs/drivers to different package. Example: /usr/lib/x86_64-linux-gnu/dpdk/pmds-20.0/librte_pmd_ixgbe.so file required by Intel NIC which is part of that package. Change-Id: Ia0cacbbffca363f79d4d43edbc1eb140bfea5e04 --- vars/debian.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/vars/debian.yml b/vars/debian.yml index 2a46029a..0020976e 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -32,6 +32,7 @@ neutron_ovn_northd_opts_file: "/etc/default/ovn-central" neutron_ovs_dpdk_required_packages: - openvswitch-common - openvswitch-switch-dpdk + - libdpdk-dev dpdk_service_name: dpdk