search for: typed_param_value

Displaying 10 results from an estimated 10 matches for "typed_param_value".

2014 Aug 25
2
Building virt-top to SLES 11 SP3
...so I've built ocaml 4.00.1 from source and installed the necessary dependencies using Opam. I'm still running into a compile error on virt_top.ml, line 697: Error: This expression has type int -> D.typed_param list array but an expression was expected of type (string * D.typed_param_value) list array As a frame of reference I was able to build virt-top 1.0.8 from source on a Fedora Core 20 box with the necessary ocaml -devel RPMs installed (also ocaml 4.00.1), so I don't know if I'm running into other dependency issues or something else. The ocaml-libvirt package version 0...
2014 Aug 25
1
Re: Building virt-top to SLES 11 SP3
...talled the necessary dependencies using Opam. > > > > I'm still running into a compile error on virt_top.ml, line 697: > > Error: This expression has type int -> D.typed_param list array > > but an expression was expected of type > > (string * D.typed_param_value) list array [Thanks Eric] This is not pretty, but what happened is that Hu Tao from Fujitsu and Dave Scott from Citrix added a bunch of new features to ocaml-libvirt[1]. One of these new features changes the API for an existing function. However there is no released tarball containing this chang...
2014 Aug 25
0
Re: Building virt-top to SLES 11 SP3
....00.1 from source and installed the necessary dependencies using Opam. > > I'm still running into a compile error on virt_top.ml, line 697: > Error: This expression has type int -> D.typed_param list array > but an expression was expected of type > (string * D.typed_param_value) list array > > As a frame of reference I was able to build virt-top 1.0.8 from source on a Fedora Core 20 box with the necessary ocaml -devel RPMs installed (also ocaml 4.00.1), so I don't know if I'm running into other dependency issues or something else. The ocaml-libvirt package...
2019 Apr 08
0
[PATCH v4 2/7] common: Bundle the libvirt-ocaml library for use by virt-v2v
...flags flags + + type sched_param = string * sched_param_value + and sched_param_value = + | SchedFieldInt32 of int32 | SchedFieldUInt32 of int32 + | SchedFieldInt64 of int64 | SchedFieldUInt64 of int64 + | SchedFieldFloat of float | SchedFieldBool of bool + + type typed_param = string * typed_param_value + and typed_param_value = + | TypedFieldInt32 of int32 | TypedFieldUInt32 of int32 + | TypedFieldInt64 of int64 | TypedFieldUInt64 of int64 + | TypedFieldFloat of float | TypedFieldBool of bool + | TypedFieldString of string + + type migrate_flag = Live + + type memory_flag = Virtual...
2019 Dec 16
3
[v2v PATCH 0/2] Move libvirt-ocaml copy to v2v repo
libvirt-ocaml is used only by virt-v2v, so move it to this repository, instead of having it around in the common submodule. The removal from common will happen later. Pino Toscano (2): common: Bundle the libvirt-ocaml library for use by virt-v2v build: switch embedded copy of libvirt-ocaml .gitignore | 2 + 3rdparty/libvirt-ocaml/Makefile.am |
2018 Aug 30
8
[PATCH 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2018 Nov 27
8
[PATCH v2 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2019 Jan 30
8
[PATCH v3 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2019 May 20
8
[PATCH v5 0/7] v2v: switch to ocaml-libvirt
Hi, this series switches virt-2v to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not test all
2019 Apr 08
12
[PATCH 43 0/7] v2v: switch to ocaml-libvirt
Hi, this series switches virt-2v to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not test all