Displaying 20 results from an estimated 1000 matches similar to: "[PATCH] v2v: fix provides list whitespace trim"
2016 Oct 04
1
[PATCH] v2v: linux: try to fix removal of VMware tools
Try to improve the way packages of VMware tools are removed from
YUM-based guests:
- when filtering the package itself from its providers, do a stricter
check so either the provide is the unversioned package, or it is
exactly its own name
- if the package has no other providers, then going further will cause
the invocation of 'yum install' with no packages, and thus the package
2015 Aug 24
3
[PATCH 1/3] ocaml: dynamically generate the content of Guestfs.Errno
Put in a list the errnos to expose, filling the content of the
Guestfs.Errno submodule from that.
Also, generate a separate guestfs-c-errnos.c with the implementations of
the functions returning the errno codes.
Only code motion and refactoring, no actual changes on the content of
the ocaml Guestfs module.
---
.gitignore | 1 +
generator/main.ml | 1 +
generator/ocaml.ml | 77
2014 Aug 21
3
Re: [PATCH] v2v: adding input -i ova
On Thu, Aug 21, 2014 at 01:50:18PM +0100, Richard W.M. Jones wrote:
> + (* extract ova (tar) file *)
> + let cmd = sprintf ("tar -xf %s -C %s") (ova) (dir) in
Lots of extra parentheses here :-) The same command can be written
more naturally without any of them:
let cmd = sprintf "tar -xf %s -C %s" ova dir in
However I think what you might have meant is to call
2014 Aug 21
2
[PATCH] v2v: adding input -i ova
Shahar:
This is the same patch as you posted, but I have rebased it on top of
current HEAD.
You'll have to do save the next email to a file, and do:
git reset --hard HEAD^
git pull
git am /path/to/saved_email
There are no changes in this patch, except what is needed to make it
compile. Will follow-up with comments.
Rich.
2013 Sep 17
3
[PATCH] vhost/scsi: use vmalloc for order-10 allocation
As vhost scsi device struct is large, if the device is
created on a busy system, kzalloc() might fail, so this patch does a
fallback to vzalloc().
As vmalloc() adds overhead on data-path, add __GFP_REPEAT
to kzalloc() flags to do this fallback only when really needed.
Reported-by: Dan Aloni <alonid at stratoscale.com>
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
I put
2013 Sep 17
3
[PATCH] vhost/scsi: use vmalloc for order-10 allocation
As vhost scsi device struct is large, if the device is
created on a busy system, kzalloc() might fail, so this patch does a
fallback to vzalloc().
As vmalloc() adds overhead on data-path, add __GFP_REPEAT
to kzalloc() flags to do this fallback only when really needed.
Reported-by: Dan Aloni <alonid at stratoscale.com>
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
I put
2013 Sep 04
1
[PATCH] drivers/vhost/scsi.c: avoid a 10-order allocation
On Sun, Aug 18, 2013 at 12:18:38PM +0300, Michael S. Tsirkin wrote:
> On Sun, Aug 18, 2013 at 11:48:56AM +0300, Dan Aloni wrote:
> > On 3.10.7 and x86_64, as a result of sizeof(struct vhost_scsi) being
> > 2152960 bytes the allocation failed once on my development machine.
> >
> > Saw it would be prudent to split the bulk of it, which is the vqs array
> > into
2013 Sep 04
1
[PATCH] drivers/vhost/scsi.c: avoid a 10-order allocation
On Sun, Aug 18, 2013 at 12:18:38PM +0300, Michael S. Tsirkin wrote:
> On Sun, Aug 18, 2013 at 11:48:56AM +0300, Dan Aloni wrote:
> > On 3.10.7 and x86_64, as a result of sizeof(struct vhost_scsi) being
> > 2152960 bytes the allocation failed once on my development machine.
> >
> > Saw it would be prudent to split the bulk of it, which is the vqs array
> > into
2014 Sep 17
3
Re: virt-v2v -ic question
On 16.09.14 15:09, Richard W.M. Jones wrote:
> On Tue, Sep 16, 2014 at 05:06:57PM +0300, Shahar Havivi wrote:
> > I am using upstream qemu while using this local variables:
> > export PATH=/home/shahar/git/qemu:$PATH
> > export LIBGUESTFS_HV=/home/shahar/git/qemu/x86_64-softmmu/qemu-system-x86_64
> >
> > Is that sufficient?
>
> Yup, upstream qemu should
2016 Apr 26
2
Re: stream finish throws exception via python API
On 26.04.16 14:14, Shahar Havivi wrote:
> On 25.04.16 09:11, Cole Robinson wrote:
> > On 04/25/2016 08:10 AM, Shahar Havivi wrote:
> > > On 17.04.16 15:41, Shahar Havivi wrote:
> > >> Hi,
> > >> The following snippet works fine e.g. receiving the data but when calling
> > >> stream.finish() we get the following error:
> > >>
>
2016 Apr 26
2
Re: stream finish throws exception via python API
On 04/26/2016 09:35 AM, Shahar Havivi wrote:
> On 26.04.16 15:30, Shahar Havivi wrote:
>> On 26.04.16 14:14, Shahar Havivi wrote:
>>> On 25.04.16 09:11, Cole Robinson wrote:
>>>> On 04/25/2016 08:10 AM, Shahar Havivi wrote:
>>>>> On 17.04.16 15:41, Shahar Havivi wrote:
>>>>>> Hi,
>>>>>> The following snippet works
2014 Sep 16
2
Re: virt-v2v -ic question
On 16.09.14 14:21, Richard W.M. Jones wrote:
> On Tue, Sep 16, 2014 at 04:04:02PM +0300, Shahar Havivi wrote:
> > Hi,
> >
> > I am trying to convert from esx server to local directory a VM names CSB,
> > Its build from source 77b371b18b6a7ad37105a595931514f542a04396
> >
> > When running:
> > LIBGUESTFS_BACKEND=direct ./run ./v2v/virt-v2v -ic
2014 Dec 04
2
[PATCH v3 0/2] v2v: When picking a default kernel, favour non-debug
Since v2:
- Use string_suffix kernel_name "-debug" || string_suffix kernel_name "-dbg"
- This requires addition of the string_suffix function and some tests
2016 Apr 26
2
Re: stream finish throws exception via python API
On 04/26/2016 02:56 PM, Nir Soffer wrote:
> On Tue, Apr 26, 2016 at 4:37 PM, Cole Robinson <crobinso@redhat.com> wrote:
>> On 04/26/2016 09:35 AM, Shahar Havivi wrote:
>>> On 26.04.16 15:30, Shahar Havivi wrote:
>>>> On 26.04.16 14:14, Shahar Havivi wrote:
>>>>> On 25.04.16 09:11, Cole Robinson wrote:
>>>>>> On 04/25/2016 08:10
2014 Sep 21
2
Re: virt-v2v -ic question
On 17.09.14 10:02, Richard W.M. Jones wrote:
> On Wed, Sep 17, 2014 at 10:58:18AM +0300, Shahar Havivi wrote:
> > On 16.09.14 15:09, Richard W.M. Jones wrote:
> > > On Tue, Sep 16, 2014 at 05:06:57PM +0300, Shahar Havivi wrote:
> > > > I am using upstream qemu while using this local variables:
> > > > export PATH=/home/shahar/git/qemu:$PATH
> > >
2015 Nov 26
2
New vs old API usages
Hi,
Currently I am using the latest libvirt API listAllDomains() to probe for domains.
I may need to fall back to older API for old libvirt server such as: listDefinedDomains() and lookupByName()
instead of listAllDomains().
Is there any disadvantage to using listAllDomains instead of listAllDomains
or its the same results via different API?
Thank you,
Shahar.
2016 Aug 15
2
[PATCH v2] v2v: factor out bootloader handling
Create an object hierarchy to represent different bootloaders for Linux
guests, moving the separate handling of grub1 and grub2 in different
classes: this isolates the code for each type of bootloader together,
instead of scattering it all around.
This is mostly code refactoring, with no actual behaviour change.
---
po/POTFILES-ml | 1 +
v2v/Makefile.am | 2 +
v2v/bootloaders.ml
2016 Apr 25
2
Re: stream finish throws exception via python API
On 04/25/2016 08:10 AM, Shahar Havivi wrote:
> On 17.04.16 15:41, Shahar Havivi wrote:
>> Hi,
>> The following snippet works fine e.g. receiving the data but when calling
>> stream.finish() we get the following error:
>>
>> stream = con.newStream()
>> vol.download(stream, 0, 0, 0)
>> buf = stream.recv(1024)
>> stream.finish()
>>
>>
2015 Jan 20
2
[PATCH] v2v: -o vdsm should assume data domain at -os path
2016 Apr 17
2
stream finish throws exception via python API
Hi,
The following snippet works fine e.g. receiving the data but when calling
stream.finish() we get the following error:
stream = con.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>