Re: [pve-devel] [PATCH v2 qemu-server 4/7] fix #3010: add 'bootorder' parameter for better control of boot devices

2020-10-16 Thread Thomas Lamprecht
On 06.10.20 15:32, Stefan Reiter wrote: > @@ -3213,17 +3210,30 @@ sub config_to_command { > push @$devices, '-device', $kbd if defined($kbd); > } > > +my $bootorder = {}; > +my $boot = parse_property_string($boot_fmt, $conf->{boot}) if > $conf->{boot}; Seeing just now, never

Re: [pve-devel] [PATCH v2 qemu-server 2/2] fix clone_disk failing for nonexistent cloudinit disk

2020-10-16 Thread Thomas Lamprecht
On 06.10.20 13:10, Mira Limbeck wrote: > On 10/6/20 10:56 AM, Mira Limbeck wrote: >> On 10/5/20 5:35 PM, Thomas Lamprecht wrote: >>> On 28.09.20 10:36, Mira Limbeck wrote: @@ -6906,6 +6906,8 @@ sub clone_disk {   $size = PVE::QemuServer::Cloudinit::CLOUDINIT_DISK_SIZE;  

[pve-devel] applied: [PATCH v2 qemu-server 2/2] fix clone_disk failing for nonexistent cloudinit disk

2020-10-16 Thread Thomas Lamprecht
On 28.09.20 10:36, Mira Limbeck wrote: > After migration or a rollback the cloudinit disk might not be allocated, so > volume_size_info() fails. As we override the value anyway for cloudinit > and efi disks simply move the volume_size_info() call into the 'else' > branch. > > Signed-off-by: Mira

[pve-devel] applied: [PATCH v2 qemu-server 1/2] fix VM clone from snapshot with cloudinit disk

2020-10-16 Thread Thomas Lamprecht
On 28.09.20 10:36, Mira Limbeck wrote: > All volumes contained in $vollist are activated. In this case a snapshot > of the volume. For cloudinit disks no snapshots are created so don't add > it to the list of volumes to activate as it otherwise fails with no > logical volume found. > >

[pve-devel] applied: [PATCH qemu-server] fix typos

2020-10-16 Thread Thomas Lamprecht
On 14.10.20 13:40, Fabian Ebner wrote: > Signed-off-by: Fabian Ebner > --- > PVE/QemuServer.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > applied, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com

[pve-devel] [PATCH conntrack-tool 2/2] add packaging support

2020-10-16 Thread Mira Limbeck
Signed-off-by: Mira Limbeck --- The configs in debian/ as well as the Makefile are copied from pmg-log-tracker and modified to fit pve-conntrack-tool. I've kept the vcs_git and vcs_browser configs, but replaced pmg-log-tracker with pve-conntrack-tool. Should that be removed as it doesn't exist

[pve-devel] [PATCH qemu-server] copy conntrack information on migration

2020-10-16 Thread Mira Limbeck
Requires the pve-conntrack-tool. On migration the conntrack information from the source node is dumped and sent to the target node where it is then inserted. This helps with open connections during migration when the firewall is active. Signed-off-by: Mira Limbeck --- PVE/QemuMigrate.pm | 3 +++

[pve-devel] [PATCH conntrack-tool 1/2] initial commit

2020-10-16 Thread Mira Limbeck
Dumping conntrack information and importing conntrack information works for IPv4 and IPv6. No filtering is supported for now. pve-conntrack-tool will always return both IPv4 and IPv6 conntracks together. Conntracks are serialized as JSON and printed on STDOUT line by line with one line containing

[pve-devel] applied-series: [PATCH v2 0/7] Improve boot device/order configuration

2020-10-16 Thread Thomas Lamprecht
On 06.10.20 15:32, Stefan Reiter wrote: > The goal of the series is to modernize boot order selection by allowing the > user > to specify arbitrary VM disks and devices in any order. Fixes #3010 and #3011. > > First patch is a standalone cleanup. Tests are seperated into extra patches. > > v2: