]> git.proxmox.com Git - qemu-server.git/commitdiff
net: increase max queues to 64
authorAlexandre Derumier <aderumier@odiso.com>
Wed, 16 Nov 2022 04:13:32 +0000 (05:13 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 16 Nov 2022 11:14:46 +0000 (12:14 +0100)
max supported queues tx + rx = 256, so 128 for combined
https://lists.gnu.org/archive/html/qemu-devel/2015-03/msg03917.html

But from above link it also seems that x86 only supports 80 pairs in
practice, so for now "only" quadruple the limit to 64 and see if we
get user feedback for more requested.

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
 [ T: reduce from 128 to 64 and add short rationale for that ]
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/QemuServer.pm

index cb77055c3f4302ae31899e5296657c4fd3dc5762..3db73c8df717bf1ea19e7e86c6782aeafc72b54b 100644 (file)
@@ -923,7 +923,7 @@ my $net_fmt = {
     }),
     queues => {
        type => 'integer',
-       minimum => 0, maximum => 16,
+       minimum => 0, maximum => 64,
        description => 'Number of packet queues to be used on the device.',
        optional => 1,
     },