[pve-devel] [PATCH pve-kernel] backport exposing FLUSHBYASID when running nested VMs on AMD CPUs

2023-10-19 Thread Stefan Sterz
this exposes the FLUSHBYASID CPU flag to nested VMs when running on an AMD CPU. also reverts a made up check that would advertise FLUSHBYASID as not supported. this enable certain modern hypervisors such as VMWare ESXi 7 and Workstation 17 to run nested VMs properly again. Signed-off-by: Stefan St

Re: [pve-devel] [PATCH manager 2/3] ui: tags: prevent pasting non plain-text content

2023-10-19 Thread Dominik Csapak
sry disregard this patch only, that property value is not supported in firefox :( ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH manager 3/3] ui: wizards: allow adding tags in the qemu/lxc create wizard

2023-10-19 Thread Dominik Csapak
in the general tab in the advanced section. For that to work, we introduce a new option for the TagEditContainer named 'editOnly', which controls now the cancel/finish buttons, automatically enter edit mode and disable enter/escape keypresses. We also prevent now the loading of tags while in edit

[pve-devel] [PATCH manager 2/3] ui: tags: prevent pasting non plain-text content

2023-10-19 Thread Dominik Csapak
by setting 'contentEditable' to 'plaintext-only' instead of true. Otherwise it was possible to paste html code into the field (an error was thrown by the backend since it does not match the regex) Signed-off-by: Dominik Csapak --- www/manager6/form/Tag.js | 4 ++-- 1 file changed, 2 insertions(+

[pve-devel] [PATCH manager 1/3] ui: tags: fix focus for edit mode

2023-10-19 Thread Dominik Csapak
such that one can tab through the editable tag fields. We have to handle that manually, since ExtJs does not expect contenteditable html tags for focus handling. Signed-off-by: Dominik Csapak --- www/manager6/form/Tag.js | 9 + 1 file changed, 9 insertions(+) diff --git a/www/manager6/f

[pve-devel] applied: [PATCH installer v3] fix #4869: Show state in management interface ComboBox

2023-10-19 Thread Thomas Lamprecht
Am 19/10/2023 um 10:35 schrieb Maximiliano Sandoval R: > From: Maximiliano Sandoval > > This is a continuation of > https://lists.proxmox.com/pipermail/pve-devel/2023-August/058639.html. > > Signed-off-by: Maximiliano Sandoval R > --- > v3 was tested only with `make check-pve`. v2 was properly

[pve-devel] [PATCH RFC container] Add device passthrough

2023-10-19 Thread Filip Schauer
Signed-off-by: Filip Schauer --- Is it reasonable to add a "dev[n]" argument to the pct.conf, given that device mount points only allow passing through block devices? src/PVE/LXC.pm| 14 ++ src/PVE/LXC/Config.pm | 32 2 files changed, 46 inser

Re: [pve-devel] [PATCH ifupdown2] patch: fix bond mac address at boot.

2023-10-19 Thread DERUMIER, Alexandre
Message initial De: Thomas Lamprecht À: Proxmox VE development discussion , Alexandre Derumier Objet: Re: [pve-devel] [PATCH ifupdown2] patch: fix bond mac address at boot. Date: 19/10/2023 10:53:22 Am 01/09/2023 um 11:12 schrieb Alexandre Derumier: > since systemd v241, like f

[pve-devel] [PATCH common v3 1/1] PBSClient: add 'tar' parameter to file_restore_extract

2023-10-19 Thread Dominik Csapak
so that we can get a 'tar.zst' from proxmox-file-restore by giving '--format tar --zstd' to the file-restore binary Signed-off-by: Dominik Csapak --- src/PVE/PBSClient.pm | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/PVE/PBSClient.pm b/src/PVE/PBSClient.pm inde

[pve-devel] [PATCH storage v3 1/1] api/filerestore: add 'tar' parameter to 'download' api

2023-10-19 Thread Dominik Csapak
to be able to download 'tar.zst' archives Signed-off-by: Dominik Csapak --- src/PVE/API2/Storage/FileRestore.pm | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/PVE/API2/Storage/FileRestore.pm b/src/PVE/API2/Storage/FileRestore.pm index 764ebfb..6c9cda6 100644 ---

[pve-devel] [PATCH widget-toolkit v3 1/1] window/FileBrowser: enable tar button by default

2023-10-19 Thread Dominik Csapak
all endpoints now can handle the 'tar' parameter, so add it for all Signed-off-by: Dominik Csapak --- src/window/FileBrowser.js | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/window/FileBrowser.js b/src/window/FileBrowser.js index 4e4c639..e036d9f 100644 --- a/src/w

[pve-devel] [PATCH common/storage/widget-toolkit v3] add tar.zst download in pve

2023-10-19 Thread Dominik Csapak
like we have the tar.zst download button for pbs itself, add it for pve for both vms and container file-restore pve-storage depends on pve-common changes from v2: * rebase on master * drop applied patches changes from v1: * split format into 'format' and 'zstd' * also use those parameters for fi

Re: [pve-devel] [PATCH ifupdown2] patch: fix bond mac address at boot.

2023-10-19 Thread Thomas Lamprecht
Am 01/09/2023 um 11:12 schrieb Alexandre Derumier: > since systemd v241, like for bridge, the bond mac is setup > randomly at boot, instead inherit from first slave. > > Then, on next ifreload, ifupdown2 was already fixing it, > but with an down/up of the bond (with potentials impact on the networ

[pve-devel] [PATCH installer v3] fix #4869: Show state in management interface ComboBox

2023-10-19 Thread Maximiliano Sandoval R
From: Maximiliano Sandoval This is a continuation of https://lists.proxmox.com/pipermail/pve-devel/2023-August/058639.html. Signed-off-by: Maximiliano Sandoval R --- v3 was tested only with `make check-pve`. v2 was properly tested by Filip Schauer in a VM. Differences from v2: - Use a escap

Re: [pve-devel] [PATCH v2 many 00/11] notifications: feed system mails into proxmox_notify

2023-10-19 Thread Lukas Wagner
On 10/17/23 09:28, Lukas Wagner wrote: Ping - would be great to get some reviews on this to get this merged for the next release. On 10/2/23 10:06, Lukas Wagner wrote: The aim of this patch series is to adapt `proxmox-mail-forward` so that it forwards emails that were sent to the local root

Re: [pve-devel] [PATCH v3 many 0/7] notifications: add SMTP endpoint

2023-10-19 Thread Lukas Wagner
On 10/17/23 09:27, Lukas Wagner wrote: Ping - would be great to get some reviews on this to get this merged for the next release. On 9/18/23 13:14, Lukas Wagner wrote: This patch series adds support for a new notification endpoint type, smtp. As the name suggests, this new endpoint allows PVE

Re: [pve-devel] [PATCH manager v2] pvesh: decode streamed responses

2023-10-19 Thread Christoph Heiss
Ping, still applies. On Wed, Jun 07, 2023 at 04:15:11PM +0200, Christoph Heiss wrote: > > This allows to use `pvesh` on endpoints like /nodes/{node}/journal, > which return streamed (and possibly gzip'd) responses. > > Currently, e.g. `pvesh get /nodes/localhost/journal --lastentries 10` > fails

Re: [pve-devel] [PATCH proxmox-backup/common/storage/wt v2] add tar.zst download in pve

2023-10-19 Thread Dominik Csapak
ping (sorry i waited for such a long time ;) ) it probably does not apply anymore, but i'd like to get feedback before starting the rebase ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-de