diff --git a/ansible/roles/ovs-dpdk/files/ovs-dpdkctl.sh b/ansible/roles/ovs-dpdk/files/ovs-dpdkctl.sh index ea8cd6e897..a09662805f 100755 --- a/ansible/roles/ovs-dpdk/files/ovs-dpdkctl.sh +++ b/ansible/roles/ovs-dpdk/files/ovs-dpdkctl.sh @@ -47,9 +47,9 @@ function generate_pciwhitelist { for nic in $(list_dpdk_nics); do address="$(get_value $nic address)" if [ "$_Whitelist" == '' ]; then - _Whitelist="-w $address" + _Whitelist="-a $address" else - _Whitelist="$_Whitelist -w $address" + _Whitelist="$_Whitelist -a $address" fi done echo $_Whitelist @@ -482,7 +482,7 @@ options: - The pci_whitelist allows multiple dpdk primary process to utilise different pci devices without resulting in a conflict of ownership. - - Example: pci_whitelist="-w -w " + - Example: pci_whitelist="-a -a " - Default: auto generated form port_mappings. EOF diff --git a/releasenotes/notes/bug-2058372-f94889bae9522ae4.yaml b/releasenotes/notes/bug-2058372-f94889bae9522ae4.yaml new file mode 100644 index 0000000000..4675e2be2e --- /dev/null +++ b/releasenotes/notes/bug-2058372-f94889bae9522ae4.yaml @@ -0,0 +1,7 @@ +--- +fixes: + - | + Fix the wrong configuration of the ovs-dpdk service. + this breaks the deployment of kolla-ansible. + For more details please see `bug 2058372 + `__.