From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH OSSTEST v2 06/13] toolstack/libvirt: guest migrate, save and restore support Date: Mon, 13 Jul 2015 12:23:52 +0100 Message-ID: <1436786632.7019.105.camel@citrix.com> References: <1436718036-7985-1-git-send-email-wei.liu2@citrix.com> <1436718036-7985-7-git-send-email-wei.liu2@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZEbqM-0003cl-06 for xen-devel@lists.xenproject.org; Mon, 13 Jul 2015 11:24:18 +0000 In-Reply-To: <1436718036-7985-7-git-send-email-wei.liu2@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Wei Liu Cc: Xen-devel , ian.jackson@eu.citrix.com List-Id: xen-devel@lists.xenproject.org On Sun, 2015-07-12 at 17:20 +0100, Wei Liu wrote: Perhaps the libvirt part of the check_for_command stuff ought to be moved here? Otherwise we are claiming support before the code is actually willing to try to do so. > Signed-off-by: Wei Liu > Cc: Ian Campbell > Cc: Ian Jackson > Acked-by: Ian Campbell > --- > Osstest/Toolstack/libvirt.pm | 11 ++++++++--- > 1 file changed, 8 insertions(+), 3 deletions(-) > > diff --git a/Osstest/Toolstack/libvirt.pm b/Osstest/Toolstack/libvirt.pm > index ddf84df..3dc1856 100644 > --- a/Osstest/Toolstack/libvirt.pm > +++ b/Osstest/Toolstack/libvirt.pm > @@ -105,17 +105,22 @@ sub saverestore_check ($) { > > sub migrate ($) { > my ($self,$gho,$dst,$timeout) = @_; > - die "Migration is not yet supported on libvirt."; > + my $ho = $self->{Host}; > + my $gn = $gho->{Name}; > + target_cmd_root($ho, "virsh migrate $gn $dst", $timeout); > } > > sub save ($$$$) { > my ($self,$gho,$f,$timeout) = @_; > - die "Save is not yet supported on libvirt."; > + my $ho = $self->{Host}; > + my $gn = $gho->{Name}; > + target_cmd_root($ho, "virsh save $gn $f", $timeout); > } > > sub restore ($$$$) { > my ($self,$gho,$f,$timeout) = @_; > - die "Restore is not yet supported on libvirt."; > + my $ho = $self->{Host}; > + target_cmd_root($ho, "virsh restore $f", $timeout); > } > > 1;