From b6d61446321926b01b55688653329842a059e05b Mon Sep 17 00:00:00 2001 From: khashf Date: Tue, 7 Apr 2020 21:51:00 -0700 Subject: [PATCH] Add missing Image property hw_vif_multiqueue_enabled to metadefs Add the missing hw_vif_multiqueue_enabled property and its descriptions in doc/source/admin/useful-image-properties.rst to: - etc/metadefs/compute-libvirt-image.json - etc/metadefs/compute-vmware.json Co-authored-by: Brian Rosmaita Change-Id: I3b5ffc25a8d3fb5d55aa1ef93b20c5f8aefe93e8 Closes-bug: #1843576 --- etc/metadefs/compute-libvirt-image.json | 6 ++++++ etc/metadefs/compute-vmware.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/etc/metadefs/compute-libvirt-image.json b/etc/metadefs/compute-libvirt-image.json index eeb4d92fac..65e1c2669a 100644 --- a/etc/metadefs/compute-libvirt-image.json +++ b/etc/metadefs/compute-libvirt-image.json @@ -109,6 +109,12 @@ "virtio" ] }, + "hw_vif_multiqueue_enabled": { + "title": "Multiqueue Enabled", + "description": "If true, this enables the virtio-net multiqueue feature. In this case, the driver sets the number of queues equal to the number of guest vCPUs. This makes the network performance scale across a number of vCPUs.", + "type": "string", + "enum": ["true", "false"] + }, "hw_pmu": { "title": "Virtual Performance Monitoring Unit", "description": "Controls emulation of a vPMU in the guest. To reduce latency in realtime workloads disable the vPMU by setting hw_pmu=false", diff --git a/etc/metadefs/compute-vmware.json b/etc/metadefs/compute-vmware.json index 51e0ccef60..ad1d76a9cc 100644 --- a/etc/metadefs/compute-vmware.json +++ b/etc/metadefs/compute-vmware.json @@ -206,6 +206,12 @@ "VirtualVmxnet3" ], "default" : "e1000" + }, + "hw_vif_multiqueue_enabled": { + "title": "Multiqueue Enabled", + j "description": "If true, this enables the virtio-net multiqueue feature. In this case, the driver sets the number of queues equal to the number of guest vCPUs. This makes the network performance scale across a number of vCPUs.", + "type": "string", + "enum": ["true", "false"] } }, "objects": []