Re: [Xen-devel] [PATCH OSSTEST v2 06/13] toolstack/libvirt: guest migrate, save and restore support

2015-07-21 Thread Wei Liu
On Mon, Jul 13, 2015 at 12:23:52PM +0100, Ian Campbell wrote:
> 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.

I move this patch before "toolstack: distinguish local and remote
migration support" (the patch that claims support). It should be fine
now.

Wei.

> 
> > 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;
> 

___
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel


Re: [Xen-devel] [PATCH OSSTEST v2 06/13] toolstack/libvirt: guest migrate, save and restore support

2015-07-13 Thread Ian Campbell
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;



___
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel


[Xen-devel] [PATCH OSSTEST v2 06/13] toolstack/libvirt: guest migrate, save and restore support

2015-07-12 Thread Wei Liu
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;
-- 
1.9.1


___
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel