search for: pool_uuid

Displaying 8 results from an estimated 8 matches for "pool_uuid".

Did you mean: pool_guid
2019 Sep 02
3
[PATCH] v2v: Set DISKTYPE=2 in RHV and VDSM meta files
I was trying to find some documentation for this field and the best I could find is: https://github.com/oVirt/vdsm/blob/master/lib/vdsm/storage/constants.py What do the numbers mean? The comments in the file indicate that strings are valid too (eg. DISKTYPE=OVFS). Also this patch as written will affect -o vdsm mode too (another deprecated-ish mode where we write directly to the Storage
2019 Sep 02
0
[PATCH] v2v: Set DISKTYPE=2 in RHV and VDSM meta files (RHBZ#1746699).
...uot; time; bpf "MTIME=%.0f\n" time; bpf "IMAGE=%s\n" image_uuid; - bpf "DISKTYPE=1\n"; + bpf "DISKTYPE=2\n"; bpf "PUUID=00000000-0000-0000-0000-000000000000\n"; bpf "LEGALITY=LEGAL\n"; bpf "POOL_UUID=\n"; -- 2.23.0
2010 Jun 01
1
[PATCH] RHEV: Pad disk sizes up to a multiple of 1024 bytes
...+ $self->{written} = 0; $self->{writer} = Sys::VirtV2V::Target::RHEV::NFSHelper->new(sub { my $dir = $self->{dir}; @@ -283,7 +288,7 @@ sub open print $meta "LEGALITY=LEGAL\n"; print $meta "MTIME=$now\n"; print $meta "POOL_UUID=00000000-0000-0000-0000-000000000000\n"; - print $meta "SIZE=".ceil($self->{size}/1024)."\n"; + print $meta "SIZE=".($self->{outsize} / 1024)."\n"; print $meta "TYPE=SPARSE\n"; print $meta "DESCRIPTION...
2016 Dec 01
2
[PATCH] v2v: Rename RHEV to RHV throughout.
...rt the output format '%s', only raw or qcow2") t.target_format in let buf = Buffer.create 256 in let bpf fs = bprintf buf fs in @@ -239,8 +239,8 @@ let create_meta_files output_alloc sd_uuid image_uuids targets = bpf "LEGALITY=LEGAL\n"; bpf "POOL_UUID=\n"; bpf "SIZE=%Ld\n" size_in_sectors; - bpf "FORMAT=%s\n" format_for_rhev; - bpf "TYPE=%s\n" output_alloc_for_rhev; + bpf "FORMAT=%s\n" format_for_rhv; + bpf "TYPE=%s\n" output_alloc_for_rhv; bpf "DESCRIP...
2016 Dec 07
0
[PATCH v2] v2v: Rename RHEV to RHV throughout.
...rt the output format '%s', only raw or qcow2") t.target_format in let buf = Buffer.create 256 in let bpf fs = bprintf buf fs in @@ -239,8 +239,8 @@ let create_meta_files output_alloc sd_uuid image_uuids targets = bpf "LEGALITY=LEGAL\n"; bpf "POOL_UUID=\n"; bpf "SIZE=%Ld\n" size_in_sectors; - bpf "FORMAT=%s\n" format_for_rhev; - bpf "TYPE=%s\n" output_alloc_for_rhev; + bpf "FORMAT=%s\n" format_for_rhv; + bpf "TYPE=%s\n" output_alloc_for_rhv; bpf "DESCRIP...
2016 Dec 07
2
[PATCH v2] v2v: Rename RHEV to RHV throughout.
v2: - Fix virt-p2v messages too. Rich.
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...t;\n"; + print $meta "DISKTYPE=1\n"; + print $meta "PUUID=00000000-0000-0000-0000-000000000000\n"; + print $meta "LEGALITY=LEGAL\n"; + print $meta "MTIME=".$volume->_get_creation()."\n"; + print $meta "POOL_UUID=00000000-0000-0000-0000-000000000000\n"; + print $meta "SIZE=$sizek\n"; + print $meta "TYPE=".uc($volume->_get_rhev_type())."\n"; + print $meta "DESCRIPTION=Exported by virt-v2v\n"; + print $meta "EOF\n"; + +...
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