From: Wolfgang Bumiller <w.bumiller@proxmox.com>
To: Dominik Csapak <d.csapak@proxmox.com>
Cc: pve-devel@lists.proxmox.com
Subject: [pve-devel] applied: [PATCH qemu-server 1/1] fix #4119: give namespace parameter to live-restore
Date: Wed, 29 Jun 2022 14:02:06 +0200 [thread overview]
Message-ID: <20220629120206.ct6zokyc75y52qy6@casey.proxmox.com> (raw)
In-Reply-To: <20220622125735.4185653-3-d.csapak@proxmox.com>
just ran into this again and noticed this patch was still missing
applied
On Wed, Jun 22, 2022 at 02:57:35PM +0200, Dominik Csapak wrote:
> we forgot to give the namespace parameter here, so do that.
> while we're at it, give the pbs options as a hash instead of adding
> another parameter.
>
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
> PVE/QemuServer.pm | 22 ++++++++++++++++------
> 1 file changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm
> index b3964bc..09c0df4 100644
> --- a/PVE/QemuServer.pm
> +++ b/PVE/QemuServer.pm
> @@ -1717,6 +1717,7 @@ sub print_pbs_blockdev {
> my ($pbs_conf, $pbs_name) = @_;
> my $blockdev = "driver=pbs,node-name=$pbs_name,read-only=on";
> $blockdev .= ",repository=$pbs_conf->{repository}";
> + $blockdev .= ",namespace=$pbs_conf->{namespace}" if $pbs_conf->{namespace};
> $blockdev .= ",snapshot=$pbs_conf->{snapshot}";
> $blockdev .= ",archive=$pbs_conf->{archive}";
> $blockdev .= ",keyfile=$pbs_conf->{keyfile}" if $pbs_conf->{keyfile};
> @@ -6652,6 +6653,7 @@ sub restore_proxmox_backup_archive {
> my $keyfile = PVE::Storage::PBSPlugin::pbs_encryption_key_file_name($storecfg, $storeid);
>
> my $repo = PVE::PBSClient::get_repository($scfg);
> + my $namespace = $scfg->{namespace};
>
> # This is only used for `pbs-restore` and the QEMU PBS driver (live-restore)
> my $password = PVE::Storage::PBSPlugin::pbs_get_password($scfg, $storeid);
> @@ -6842,28 +6844,36 @@ sub restore_proxmox_backup_archive {
> # these special drives are already restored before start
> delete $devinfo->{'drive-efidisk0'};
> delete $devinfo->{'drive-tpmstate0-backup'};
> - pbs_live_restore($vmid, $conf, $storecfg, $devinfo, $repo, $keyfile, $pbs_backup_name);
> +
> + my $pbs_opts = {
> + repo => $repo,
> + keyfile => $keyfile,
> + snapshot => $pbs_backup_name,
> + namespace => $namespace,
> + };
> + pbs_live_restore($vmid, $conf, $storecfg, $devinfo, $pbs_opts);
>
> PVE::QemuConfig->remove_lock($vmid, "create");
> }
> }
>
> sub pbs_live_restore {
> - my ($vmid, $conf, $storecfg, $restored_disks, $repo, $keyfile, $snap) = @_;
> + my ($vmid, $conf, $storecfg, $restored_disks, $opts) = @_;
>
> print "starting VM for live-restore\n";
> - print "repository: '$repo', snapshot: '$snap'\n";
> + print "repository: '$opts->{repo}', snapshot: '$opts->{snapshot}'\n";
>
> my $pbs_backing = {};
> for my $ds (keys %$restored_disks) {
> $ds =~ m/^drive-(.*)$/;
> my $confname = $1;
> $pbs_backing->{$confname} = {
> - repository => $repo,
> - snapshot => $snap,
> + repository => $opts->{repo},
> + snapshot => $opts->{snapshot},
> archive => "$ds.img.fidx",
> };
> - $pbs_backing->{$confname}->{keyfile} = $keyfile if -e $keyfile;
> + $pbs_backing->{$confname}->{keyfile} = $opts->{keyfile} if -e $opts->{keyfile};
> + $pbs_backing->{$confname}->{namespace} = $opts->{namespace} if defined($opts->{namespace});
>
> my $drive = parse_drive($confname, $conf->{$confname});
> print "restoring '$ds' to '$drive->{file}'\n";
> --
> 2.30.2
prev parent reply other threads:[~2022-06-29 12:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-22 12:57 [pve-devel] [PATCH qemu/qemu-server] fix #4119: allow namespaces for live-restore Dominik Csapak
2022-06-22 12:57 ` [pve-devel] [PATCH qemu 1/1] add 'namespace' to BlockdevOptionsPbs Dominik Csapak
2022-06-22 13:11 ` [pve-devel] applied: " Thomas Lamprecht
2022-06-22 12:57 ` [pve-devel] [PATCH qemu-server 1/1] fix #4119: give namespace parameter to live-restore Dominik Csapak
2022-06-29 12:02 ` Wolfgang Bumiller [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220629120206.ct6zokyc75y52qy6@casey.proxmox.com \
--to=w.bumiller@proxmox.com \
--cc=d.csapak@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox