Displaying 16 results from an estimated 16 matches for "diskno".
2016 Apr 17
2
stream finish throws exception via python API
....newStream()
vol.download(stream, 0, 0, 0)
buf = stream.recv(1024)
stream.finish()
libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
Traceback (most recent call last):
File "./helpers/kvm2ovirt", line 149, in <module>
download_volume(vol, item[1], diskno, disksitems, pksize)
File "./helpers/kvm2ovirt", line 102, in download_volume
stream.finish()
File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
if ret == -1: raise libvirtError ('virStreamFinish() failed')
libvirt.libvirtError: intern...
2019 Mar 25
1
Re: [PATCH 3/3] v2v: add -o json output mode
...> + json_disks_pattern : string;
> +}
> +
> +let print_output_options () =
> + printf (f_"Output options (-oo) which can be used with -o json:
> +
> + -oo json-disks-pattern=PATTERN Pattern for the disks.
> +")
> +
> +let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
> +
> +let parse_output_options options =
> + let json_disks_pattern = ref None in
> +
> + List.iter (
> + function
> + | "json-disks-pattern", v ->
> + if !json_disks_pattern <> None...
2016 Apr 25
2
Re: stream finish throws exception via python API
...am.recv(1024)
>> stream.finish()
>>
>> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
>> Traceback (most recent call last):
>> File "./helpers/kvm2ovirt", line 149, in <module>
>> download_volume(vol, item[1], diskno, disksitems, pksize)
>> File "./helpers/kvm2ovirt", line 102, in download_volume
>> stream.finish()
>> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
>> if ret == -1: raise libvirtError ('virStreamFinish() faile...
2019 Mar 29
0
[PATCH v2 3/3] v2v: add -o json output mode
...+open Types
+open Utils
+
+type json_options = {
+ json_disks_pattern : string;
+}
+
+let print_output_options () =
+ printf (f_"Output options (-oo) which can be used with -o json:
+
+ -oo json-disks-pattern=PATTERN Pattern for the disks.
+")
+
+let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
+
+let parse_output_options options =
+ let json_disks_pattern = ref None in
+
+ List.iter (
+ function
+ | "json-disks-pattern", v ->
+ if !json_disks_pattern <> None then
+ error (f_"-o json: -...
2016 Apr 26
2
Re: stream finish throws exception via python API
...gt;>
> > >> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
> > >> Traceback (most recent call last):
> > >> File "./helpers/kvm2ovirt", line 149, in <module>
> > >> download_volume(vol, item[1], diskno, disksitems, pksize)
> > >> File "./helpers/kvm2ovirt", line 102, in download_volume
> > >> stream.finish()
> > >> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
> > >> if ret == -1: raise li...
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its
last on-disk structure changes -- and it _suprisingly_ worked as
expected. Right, now I can finally get rid of GRUB and use Syslinux to
boot my Linux on EFI from a rootfs with xfs. Shit, I have two
partitions (the first one being the required ESP) so there is no way to
access the other partitions since because Syslinux does not
2016 Apr 26
2
Re: stream finish throws exception via python API
...>> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
>>>>>> Traceback (most recent call last):
>>>>>> File "./helpers/kvm2ovirt", line 149, in <module>
>>>>>> download_volume(vol, item[1], diskno, disksitems, pksize)
>>>>>> File "./helpers/kvm2ovirt", line 102, in download_volume
>>>>>> stream.finish()
>>>>>> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
>>>>>>...
2019 Feb 25
0
[PATCH 3/3] v2v: add -o json output mode
...+open Types
+open Utils
+
+type json_options = {
+ json_disks_pattern : string;
+}
+
+let print_output_options () =
+ printf (f_"Output options (-oo) which can be used with -o json:
+
+ -oo json-disks-pattern=PATTERN Pattern for the disks.
+")
+
+let known_pattern_variables = ["DiskNo"; "DiskDeviceName"; "GuestName"]
+
+let parse_output_options options =
+ let json_disks_pattern = ref None in
+
+ List.iter (
+ function
+ | "json-disks-pattern", v ->
+ if !json_disks_pattern <> None then
+ error (f_"-o json: -...
2019 Feb 25
7
[PATCH 0/3] RFC: v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with
2016 Apr 26
2
Re: stream finish throws exception via python API
...ream Utils error : internal error: I/O helper exited abnormally
>>>>>>>> Traceback (most recent call last):
>>>>>>>> File "./helpers/kvm2ovirt", line 149, in <module>
>>>>>>>> download_volume(vol, item[1], diskno, disksitems, pksize)
>>>>>>>> File "./helpers/kvm2ovirt", line 102, in download_volume
>>>>>>>> stream.finish()
>>>>>>>> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
>...
2019 Mar 29
5
[PATCH v2 0/3] v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with
2016 Apr 25
0
Re: stream finish throws exception via python API
..., 0, 0)
> buf = stream.recv(1024)
> stream.finish()
>
> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
> Traceback (most recent call last):
> File "./helpers/kvm2ovirt", line 149, in <module>
> download_volume(vol, item[1], diskno, disksitems, pksize)
> File "./helpers/kvm2ovirt", line 102, in download_volume
> stream.finish()
> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
> if ret == -1: raise libvirtError ('virStreamFinish() failed')
> lib...
2016 Apr 26
0
Re: stream finish throws exception via python API
...ream.finish()
> >>
> >> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
> >> Traceback (most recent call last):
> >> File "./helpers/kvm2ovirt", line 149, in <module>
> >> download_volume(vol, item[1], diskno, disksitems, pksize)
> >> File "./helpers/kvm2ovirt", line 102, in download_volume
> >> stream.finish()
> >> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
> >> if ret == -1: raise libvirtError ('vir...
2016 Apr 26
0
Re: stream finish throws exception via python API
...t; >> libvirt: I/O Stream Utils error : internal error: I/O helper exited abnormally
> > > >> Traceback (most recent call last):
> > > >> File "./helpers/kvm2ovirt", line 149, in <module>
> > > >> download_volume(vol, item[1], diskno, disksitems, pksize)
> > > >> File "./helpers/kvm2ovirt", line 102, in download_volume
> > > >> stream.finish()
> > > >> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
> > > >> if...
2016 Apr 27
0
Re: stream finish throws exception via python API
...r : internal error: I/O helper exited abnormally
> >>>>>>>> Traceback (most recent call last):
> >>>>>>>> File "./helpers/kvm2ovirt", line 149, in <module>
> >>>>>>>> download_volume(vol, item[1], diskno, disksitems, pksize)
> >>>>>>>> File "./helpers/kvm2ovirt", line 102, in download_volume
> >>>>>>>> stream.finish()
> >>>>>>>> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501...
2016 Apr 26
0
Re: stream finish throws exception via python API
...virt: I/O Stream Utils error : internal error: I/O helper exited abnormally
>>>>>>> Traceback (most recent call last):
>>>>>>> File "./helpers/kvm2ovirt", line 149, in <module>
>>>>>>> download_volume(vol, item[1], diskno, disksitems, pksize)
>>>>>>> File "./helpers/kvm2ovirt", line 102, in download_volume
>>>>>>> stream.finish()
>>>>>>> File "/usr/lib64/python2.7/site-packages/libvirt.py", line 5501, in finish
>>>>...