search for: migrate_fd

Displaying 6 results from an estimated 6 matches for "migrate_fd".

Did you mean: migrate_end
2012 May 15
6
[PATCH 0 of 2 v2] Add vncviewer xm compatibility options
Changes since v1: - Removed libxl vncviewer related dependencies - The vncviewer function was modified to accept a domid instead of domspec; - main_vncviewer was updated to reflect the new use. - A domain_create structure is now passed to the parse_config_data where required/feasible (NULL otherwise) - xl restore now have long options for vncviewer/vncviewer-autopass; docs updated. - Updated
2011 Apr 18
7
[PATCH] tools: xl: on create, if debug && !daemonize, wait for domain destroy in the foreground
...Campbell <ian.campbell@citrix.com> diff -r 05abea47f4dc -r 31b98feb0eb6 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Mon Apr 18 17:21:44 2011 +0100 +++ b/tools/libxl/xl_cmdimpl.c Mon Apr 18 17:23:51 2011 +0100 @@ -1354,7 +1354,7 @@ static int create_domain(struct domain_c int migrate_fd = dom_info->migrate_fd; int fd, i; - int need_daemon = 1; + int need_daemon = daemonize; int ret, rc; libxl_waiter *w1 = NULL, *w2 = NULL; void *config_data = 0; @@ -1537,7 +1537,7 @@ start: libxl_domain_unpause(ctx, domid); ret = domid; /* caller gets...
2012 Mar 20
5
[PATCH] Add vncviewer xm compatibility options the 'xl create' command
...+ vnc = 1; + break; + case ''a'': + vnc = vncautopass = 1; + break; default: fprintf(stderr, "option `%c'' not supported.\n", optopt); break; @@ -3391,12 +3403,40 @@ dom_info.migrate_fd = -1; dom_info.console_autoconnect = console_autoconnect; dom_info.incr_generationid = 0; + dom_info.vncviewer = vnc; + dom_info.vncviewer_autopass = vncautopass; + rc = create_domain(&dom_info); if (rc < 0) return -rc; - return 0; + if (vnc &...
2011 Dec 16
13
[PATCH 0 of 4] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. Patch 1 modifies the guest ro and rw node creation to an open coding style and cleans up some extraneous node creation. Patch 2 modifies creation of the hvmloader key in xenstore and adds
2011 Dec 14
18
[PATCH 0 of 3] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. The first patch modifies creation of the hvmloader key in xenstore and adds creation of a new read/write hvmloader/generation-id-addr key. The second patch changes hvmloader to use the new key (as
2011 Dec 14
9
[PATCH 0 of 2] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. The vast majority of the code is in second patch. The first patch merely changes the xenstore key name used by hvmloader to store the buffer address.