[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 18 of 23] libxl: do not explicitly initialise members of build info to zero
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1329150453 0 # Node ID ba3ab3558a5d84fef2676b82d641a04615a9d786 # Parent d27c92eeeddc5e4c190a88ce282fb0155405a65e libxl: do not explicitly initialise members of build info to zero Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> diff -r d27c92eeeddc -r ba3ab3558a5d tools/libxl/libxl_create.c --- a/tools/libxl/libxl_create.c Mon Feb 13 16:27:33 2012 +0000 +++ b/tools/libxl/libxl_create.c Mon Feb 13 16:27:33 2012 +0000 @@ -73,7 +73,6 @@ void libxl_domain_build_info_init(libxl_ const libxl_domain_create_info *c_info) { memset(b_info, '\0', sizeof(*b_info)); - b_info->cpuid = NULL; b_info->type = c_info->type; b_info->max_memkb = LIBXL_MEMKB_DEFAULT; @@ -86,12 +85,7 @@ void libxl_domain_build_info_init(libxl_ switch (b_info->type) { case LIBXL_DOMAIN_TYPE_HVM: - b_info->u.hvm.firmware = NULL; b_info->u.hvm.timer_mode = LIBXL_TIMER_MODE_DEFAULT; - - b_info->u.hvm.vnc.display = 0; - b_info->u.hvm.serial = NULL; - b_info->u.hvm.usbdevice = NULL; break; case LIBXL_DOMAIN_TYPE_PV: b_info->u.pv.slack_memkb = 0; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |