Displaying 2 results from an estimated 2 matches for "libxl__spawn_stub_dm".
2012 Jul 04
2
[PATCH] libxl: rename stubdomain when renaming domain
..._stubdom_pvqemu_destroy_
libxl__destroy_domid_state *dis,
int rc);
+char *libxl__stub_dm_name(libxl__gc *gc, const char *guest_name)
+{
+ return libxl__sprintf(gc, "%s-dm", guest_name);
+}
+
void libxl__spawn_stub_dm(libxl__egc *egc, libxl__stub_dm_spawn_state *sdss)
{
STATE_AO_GC(sdss->dm.spawn.ao);
@@ -733,7 +738,7 @@ void libxl__spawn_stub_dm(libxl__egc *eg
libxl_domain_create_info_init(&dm_config->c_info);
dm_config->c_info.type = LIBXL_DOMAIN_TYPE_PV;
- dm_config->c_inf...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...ng both relevant
* callbacks (_spawn_stub_dm will overwrite our trespass if needed). */
diff -r ac45608496cd -r cdb947baea10 tools/libxl/libxl_dm.c
--- a/tools/libxl/libxl_dm.c Thu May 17 16:39:51 2012 +0100
+++ b/tools/libxl/libxl_dm.c Thu May 17 17:51:32 2012 +0100
@@ -715,10 +715,6 @@ void libxl__spawn_stub_dm(libxl__egc *eg
dm_config->b_info.max_memkb = 32 * 1024;
dm_config->b_info.target_memkb = dm_config->b_info.max_memkb;
- dm_config->b_info.u.pv.kernel.path = libxl__abs_path(gc, "ioemu-stubdom.gz",
- libxl__xenfirmware...