From 79f227b11c6170b0b03e32c4169bf37644a2bd0c Mon Sep 17 00:00:00 2001 From: Leonardo Milleri Date: Thu, 13 Jul 2023 18:08:50 +0200 Subject: [PATCH] vdpa multiqueue enabled Max number of queues is set to 32 by default. This setting should help with the performance of NVIDIA network cards. Signed-off-by: Leonardo Milleri --- .../files/switchdev-configuration-after-nm.sh.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindata/manifests/switchdev-config/files/switchdev-configuration-after-nm.sh.yaml b/bindata/manifests/switchdev-config/files/switchdev-configuration-after-nm.sh.yaml index 3f4f90196e..49975dec42 100644 --- a/bindata/manifests/switchdev-config/files/switchdev-configuration-after-nm.sh.yaml +++ b/bindata/manifests/switchdev-config/files/switchdev-configuration-after-nm.sh.yaml @@ -59,7 +59,7 @@ contents: extract_min_max_ids vdpaType=$(jq -c '.vdpaType' -r <<< $group) if [ $vfid -le $maxId ] && [ $vfid -ge $minId ] && [ $vdpaType != "" ]; then - vdpa_cmd="vdpa dev add name vdpa:"${VfPciAddr}" mgmtdev pci/"${VfPciAddr} + vdpa_cmd="vdpa dev add name vdpa:"${VfPciAddr}" mgmtdev pci/"${VfPciAddr}" max_vqp 32" eval $vdpa_cmd fi done