Displaying 11 results from an estimated 11 matches for "libxl_domain_create_new".
2012 Nov 20
0
[PATCH 15 of 15] libxl: ocaml: add bindings for libxl_domain_create_new
# HG changeset patch
# User Ian Campbell <ijc@hellion.org.uk>
# Date 1353432141 0
# Node ID 72376896ba08bb7035ad4b7ed5a91c2c1b45b905
# Parent 41f0137955f4a1a5a76ad34a5a6440e32d0090ef
libxl: ocaml: add bindings for libxl_domain_create_new
** NOT TO BE APPLIED **
Add a simple stub thing which should build a domain. Except it is
incomplete and doesn''t actually build. Hence RFC.
It''s a bit tedious to have to give empty values for everything. This
suggests that a better API would be for anything in the libxl API
whi...
2011 May 26
6
some old xl bugs
Hi Stefano
Here is some xl related bugs which opened for long time and I didn''t see anyone working on them. I retest them with latest xen upstream and all of them are still exist.
1. [XL]Fail to create multi-guests with NIC assigned
http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1761
xm don''t have the issue.
2. [XL]Guest network broken after do SAVE/RESTOR with xl
2014 Nov 06
0
Bug#767295: Bug#767295: xl: apparent memory leak
...x405F38E: libxl__device_disk_local_initiate_attach (libxl.c:2681)
==5722== by 0x408D2A6: libxl__bootloader_run (libxl_bootloader.c:385)
==5722== by 0x406B50C: initiate_domain_create (libxl_create.c:807)
==5722== by 0x406B50C: do_domain_create (libxl_create.c:1354)
==5722== by 0x406B6AF: libxl_domain_create_new (libxl_create.c:1377)
==5722== by 0x8056182: create_domain (xl_cmdimpl.c:2254)
==5722== by 0x8059F27: main_create (xl_cmdimpl.c:4407)
==5722== by 0x804E119: main (xl.c:360)
==5722==
==5722== 28 bytes in 1 blocks are definitely lost in loss record 39 of 72
==5722== at 0x4026B2D: malloc...
2014 Nov 06
2
Bug#767295: Bug#767295: Bug#767295: xl: apparent memory leak
...ice_disk_local_initiate_attach (libxl.c:2681)
> ==5722== by 0x408D2A6: libxl__bootloader_run (libxl_bootloader.c:385)
> ==5722== by 0x406B50C: initiate_domain_create (libxl_create.c:807)
> ==5722== by 0x406B50C: do_domain_create (libxl_create.c:1354)
> ==5722== by 0x406B6AF: libxl_domain_create_new (libxl_create.c:1377)
> ==5722== by 0x8056182: create_domain (xl_cmdimpl.c:2254)
> ==5722== by 0x8059F27: main_create (xl_cmdimpl.c:4407)
> ==5722== by 0x804E119: main (xl.c:360)
> ==5722==
> ==5722== 28 bytes in 1 blocks are definitely lost in loss record 39 of 72
> ==5...
2011 Sep 20
9
XL: pv guests dont reboot after migration (xen4.1.2-rc2-pre)
A pv guest will not reboot after migration, the guest itself does
everything right, including the shutdown, but xl does not recreate the
guest, it just shuts it down.
This goes for 2.6.39 and 3.0.4 guest kernels, havent tried different
ones. I also haven tried different xen versions.
Dont know if this would affect hvm, probably not since qemu leaves the
guest running and does a
2014 Oct 29
4
Bug#767295: xl: apparent memory leak
Package: xen-utils-4.4
Version: 4.4.1-3
When booting domU's running amd64 jessie, I notice some memory problems
with xl.
root at xen:~# pmap -x 4121
4121: /usr/lib/xen-4.4/bin/xl create --quiet --defconfig
/etc/xen/auto/mail_deb80.cfg
Address Kbytes RSS Dirty Mode Mapping
0000000000400000 144 128 0 r-x-- xl
0000000000623000 4 4 4 r---- xl
2013 Dec 16
8
XEN/arm XENFB support
Goodmorning,
I''m currently playing with XEN/arm on my Allwinner A20 (cubieboard2)
I would like to get the XENFB driver working on domU.
But currently in xen/arm there''s no support for VFB, atleast qemu is not
supported.
But this video http://www.youtube.com/watch?v=po1IeElg8tg and this one
http://www.youtube.com/watch?v=Km6gBnIqaWo is showing a working framebuffer.
So there are
2012 Apr 04
10
[PATCH 0 of 2] libxl: add libxl_domain_config_init
The following series implements libxl_domain_config_init as per the
libxl API requirement that each type has an init function.
The first function does this in an open coded manner and is proposed
for Xen 4.2.
The second function is RFC only since it moves the definition of this
type into the IDL and makes the required infrastructure updates to
enable this. I think this is more 4.3 material at
2011 Jan 11
0
[PATCH, v2]: xl: move domain struct init functions to libxl
...xl_init_build_info(libxl_domain_build_info *b_info, libxl_domain_create_info *c_info);
+void libxl_init_dm_info(libxl_device_model_info *dm_info, libxl_domain_create_info *c_info, libxl_domain_build_info *b_info);
typedef int (*libxl_console_ready)(libxl_ctx *ctx, uint32_t domid, void *priv);
int libxl_domain_create_new(libxl_ctx *ctx, libxl_domain_config *d_config, libxl_console_ready cb, void *priv, uint32_t *domid);
int libxl_domain_create_restore(libxl_ctx *ctx, libxl_domain_config *d_config, libxl_console_ready cb, void *priv, uint32_t *domid, int restore_fd);
@@ -419,16 +422,19 @@ int libxl_cdrom_insert(lib...
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings
to libxl, to make them useful for clients such as xapi/xenopsd (from XCP).
There are a number of bugfixes to the existing bindings as well. I have an
experimental version of xenopsd that successfully uses the new bindings.
An earlier version of the first half of the series was submitted to the last
by Ian Campbell on
2012 Jul 04
53
[PATCH 00 of 10 v3] Automatic NUMA placement for xl
Hello,
Third version of the NUMA placement series Xen 4.2.
All the comments received during v2''s review have been addressed (more details
in single changelogs).
The most notable changes are the following:
- the libxl_cpumap --> libxl_bitmap renaming has been rebased on top of the
recent patches that allows us to allocate bitmaps of different sizes;
- the heuristics for deciding