[pve-devel] [PATCH manager v1 5/5] fix #6370: ui: virtiofs edit: add support for thread-pool-size option

Markus Frank m.frank at proxmox.com
Mon May 5 17:05:33 CEST 2025


Requires the qemu-server commit named "fix #6370: virtiofs: add support
for thread-pool-size option".

Set the maximum value to '256', the same as for the VM CPU cores.

Signed-off-by: Markus Frank <m.frank at proxmox.com>
---
 www/manager6/qemu/VirtiofsEdit.js | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/www/manager6/qemu/VirtiofsEdit.js b/www/manager6/qemu/VirtiofsEdit.js
index 6983a763..33d38de4 100644
--- a/www/manager6/qemu/VirtiofsEdit.js
+++ b/www/manager6/qemu/VirtiofsEdit.js
@@ -81,6 +81,16 @@ Ext.define('PVE.qemu.VirtiofsInputPanel', {
 		name: 'direct-io',
 		fieldLabel: gettext('Allow Direct IO'),
 	    },
+	    {
+		xtype: 'proxmoxintegerfield',
+		name: 'thread-pool-size',
+		minValue: 0,
+		maxValue: 256,
+		value: '',
+		emptyText: '0',
+		allowBlank: true,
+		fieldLabel: gettext('thread-pool-size'),
+	    },
 	];
 
 	me.virtiofs = {};
-- 
2.39.5





More information about the pve-devel mailing list