On Mon Feb 23, 2026 at 4:40 PM CET, Markus Frank wrote:
> Requires the qemu-server commit named "fix #6370: virtiofs: add support
> for thread-pool-size option".
>
> Signed-off-by: Markus Frank <[email protected]>
> ---
> 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 d51ca255..1b70b447 100644
> --- a/www/manager6/qemu/VirtiofsEdit.js
> +++ b/www/manager6/qemu/VirtiofsEdit.js
> @@ -83,6 +83,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'),
nit: this should be a more human-readable string, e.g., just "Thread
pool size" or "Thread pool count"
> + },
> ];
>
> me.virtiofs = {};