search for: voluuid

Displaying 4 results from an estimated 4 matches for "voluuid".

Did you mean: vol_uuid
2010 Jun 08
3
[PATCH 1/3] Fix RHEV cleanup on unclean shutdown
Cleanup was not happening properly if a migration to RHEV was killed prematurely with a Ctrl-C. Firstly, the SIGINT and SIGQUIT handlers were not being registered early enough in virt-v2v.pl. Secondly, if Ctrl-C killed the guestfs qemu process first it would deliver a SIGPIPE to v2v, which caused an unclean shutdown without cleanup. Fixes RHBZ#596015 --- v2v/virt-v2v.pl | 17 ++++++++++++++---
2010 Jun 01
1
[PATCH] RHEV: Pad disk sizes up to a multiple of 1024 bytes
.... Additionally, SIZE in + # the disk meta file has units of kilobytes. To ensure everything matches up + # exactly, we will pad to to a 1024 byte boundary. + $self->{outsize} = ceil($insize/1024) * 1024; my $imageuuid = Sys::VirtV2V::Target::RHEV::UUIDHelper::get_uuid(); my $voluuid = Sys::VirtV2V::Target::RHEV::UUIDHelper::get_uuid(); @@ -206,7 +210,7 @@ sub _get_size { my $self = shift; - return $self->{size}; + return $self->{outsize}; } sub _get_imageuuid @@ -256,6 +260,7 @@ sub open my $self = shift; my $now = $self->{creation}; +...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...24 byte boundary. - $self->{outsize} = ceil($insize/1024) * 1024; + $self->{volume} = $volume; + $self->{writer} = rhev_util::nfs_helper(sub { + my $path = $self->{volume}->get_path(); - my $imageuuid = Sys::VirtV2V::Target::RHEV::UUIDHelper::get_uuid(); - my $voluuid = Sys::VirtV2V::Target::RHEV::UUIDHelper::get_uuid(); - $self->{imageuuid} = $imageuuid; - $self->{voluuid} = $voluuid; - $self->{domainuuid} = $domainuuid; + # Create the output directory + my (undef, $dir, undef) = splitpath($path); + mkdir($dir) +...
2010 Mar 30
3
[PATCH 1/2] Refactor guest and volume creation into Sys::VirtV2V::Target::LibVirt
Move all target-specific functionality into its own module in preparation for output to RHEV. --- MANIFEST | 1 + lib/Sys/VirtV2V/Connection.pm | 46 ++--- lib/Sys/VirtV2V/Converter.pm | 138 +------------ lib/Sys/VirtV2V/Target/LibVirt.pm | 419 +++++++++++++++++++++++++++++++++++++ lib/Sys/VirtV2V/Transfer/ESX.pm | 91 +++------ po/POTFILES.in