search for: incr_generationid

Displaying 2 results from an estimated 2 matches for "incr_generationid".

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
2012 Mar 20
5
[PATCH] Add vncviewer xm compatibility options the 'xl create' command
...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 && dryrun) { + printf("vncviewer not being executed for a dryrun\n"); +...