* [PATCH manager] ui: utils: fix qemu version check to unbreak USB port limit
@ 2026-06-01 9:12 Fiona Ebner
2026-06-01 13:14 ` applied: " Dominik Csapak
0 siblings, 1 reply; 2+ messages in thread
From: Fiona Ebner @ 2026-06-01 9:12 UTC (permalink / raw)
To: pve-devel
The qemu_min_version() helper is only used for the USB port limit
right now. The implementation was wrong, as it wrongly required the
minor version (or micro version if there were such a caller) to be
greater or equal too, even if the major version is already greater.
Reported by a user in the forum:
[0]: https://forum.proxmox.com/threads/26551/post-855326
Fixes: 17dcba38 ("ui: qemu: increase available usb ports depending on machine and ostype")
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
---
www/manager6/Utils.js | 3 +++
1 file changed, 3 insertions(+)
diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js
index 2ed4e65d..bbf59d8f 100644
--- a/www/manager6/Utils.js
+++ b/www/manager6/Utils.js
@@ -1808,6 +1808,9 @@ Ext.define('PVE.Utils', {
qemu_min_version: function (toCheck, minVersion) {
let i;
for (i = 0; i < toCheck.length && i < minVersion.length; i++) {
+ if (toCheck[i] > minVersion[i]) {
+ return true;
+ }
if (toCheck[i] < minVersion[i]) {
return false;
}
--
2.47.3
^ permalink raw reply related [flat|nested] 2+ messages in thread* applied: [PATCH manager] ui: utils: fix qemu version check to unbreak USB port limit
2026-06-01 9:12 [PATCH manager] ui: utils: fix qemu version check to unbreak USB port limit Fiona Ebner
@ 2026-06-01 13:14 ` Dominik Csapak
0 siblings, 0 replies; 2+ messages in thread
From: Dominik Csapak @ 2026-06-01 13:14 UTC (permalink / raw)
To: pve-devel, Fiona Ebner
On Mon, 01 Jun 2026 11:12:13 +0200, Fiona Ebner wrote:
> The qemu_min_version() helper is only used for the USB port limit
> right now. The implementation was wrong, as it wrongly required the
> minor version (or micro version if there were such a caller) to be
> greater or equal too, even if the major version is already greater.
>
> Reported by a user in the forum:
> [0]: https://forum.proxmox.com/threads/26551/post-855326
>
> [...]
Applied, thanks!
Ironically, not even the example in the comment worked, mea culpa for that.
I wish we would have some kind of regression test system for our javascript
helpers (renderer, formatter, things like this...)
[1/1] ui: utils: fix qemu version check to unbreak USB port limit
commit: 3185d429ca30bfffff4f95befeae36f67a531a5f
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-01 13:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-01 9:12 [PATCH manager] ui: utils: fix qemu version check to unbreak USB port limit Fiona Ebner
2026-06-01 13:14 ` applied: " Dominik Csapak
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.