aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/xl_sxp.c
diff options
context:
space:
mode:
authorPaul Durrant <paul.durrant@citrix.com>2012-08-22 22:26:27 +0100
committerPaul Durrant <paul.durrant@citrix.com>2012-08-22 22:26:27 +0100
commit8cda3b02882b6c2b398dffdd8533f2135e9cb088 (patch)
treebc175ce4562466ede39a71f503fa288de235355f /tools/libxl/xl_sxp.c
parent64b135198b8e61fbc2c5bc58439a0dcfe64c9af8 (diff)
downloadxen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.tar.gz
xen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.tar.bz2
xen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.zip
hvm: Remove VM genearation ID device and incr_generationid from build_info.
Microsoft have now published their VM generation ID specification at https://www.microsoft.com/en-us/download/details.aspx?id=30707. It differs from the original specification upon which I based my implementation in several key areas. Particularly, it is no longer an incrementing 64-bit counter and so this patch is to remove the incr_generationid field from the build_info and also disable the ACPI device before 4.2 is released. I will follow up with further patches to implement the VM generation ID to the new specification. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/libxl/xl_sxp.c')
-rw-r--r--tools/libxl/xl_sxp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/libxl/xl_sxp.c b/tools/libxl/xl_sxp.c
index 91f8f75b2a..31f9a9385f 100644
--- a/tools/libxl/xl_sxp.c
+++ b/tools/libxl/xl_sxp.c
@@ -108,8 +108,6 @@ void printf_info_sexp(int domid, libxl_domain_config *d_config)
libxl_timer_mode_to_string(b_info->u.hvm.timer_mode));
printf("\t\t\t(nestedhvm %s)\n",
libxl_defbool_to_string(b_info->u.hvm.nested_hvm));
- printf("\t\t\t(no_incr_generationid %s)\n",
- libxl_defbool_to_string(b_info->u.hvm.incr_generationid));
printf("\t\t\t(stdvga %s)\n", b_info->u.hvm.vga.kind ==
LIBXL_VGA_INTERFACE_TYPE_STD ?
"True" : "False");