|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 11 of 16] libxl: use libxl_version_info_destroy inste
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1282143678 -3600
# Node ID db45826441cd0333a747303155f6c8bfe01b1ca5
# Parent 5b79ae928eb160e14fc5376cae03ff83b0bfb024
libxl: use libxl_version_info_destroy instead of hand-coded do_free_version_info
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 5b79ae928eb1 -r db45826441cd tools/libxl/libxl.c
--- a/tools/libxl/libxl.c Wed Aug 18 16:01:17 2010 +0100
+++ b/tools/libxl/libxl.c Wed Aug 18 16:01:18 2010 +0100
@@ -63,11 +63,10 @@ int libxl_ctx_init(libxl_ctx *ctx, int v
return 0;
}
-static void do_free_version_info(libxl_version_info *info);
int libxl_ctx_free(libxl_ctx *ctx)
{
xc_interface_close(ctx->xch);
- do_free_version_info(&ctx->version_info);
+ libxl_version_info_destroy(&ctx->version_info);
if (ctx->xsh) xs_daemon_close(ctx->xsh);
return 0;
}
@@ -2848,18 +2847,6 @@ int libxl_get_physinfo(libxl_ctx *ctx, l
return 0;
}
-static void do_free_version_info(libxl_version_info *info)
-{
- free(info->xen_version_extra);
- free(info->compiler);
- free(info->compile_by);
- free(info->compile_domain);
- free(info->compile_date);
- free(info->capabilities);
- free(info->changeset);
- free(info->commandline);
-}
-
const libxl_version_info* libxl_get_version_info(libxl_ctx *ctx)
{
union {
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH 03 of 16] libxl: tweak formatting/whitespace of _libxl_types.h, (continued)
- [Xen-devel] [PATCH 03 of 16] libxl: tweak formatting/whitespace of _libxl_types.h, Ian Campbell
- [Xen-devel] [PATCH 06 of 16] libxl: libxl_device_console.build_state is const, Ian Campbell
- [Xen-devel] [PATCH 07 of 16] libxl: build info bootloader{, _args} are not const, Ian Campbell
- [Xen-devel] [PATCH 04 of 16] libxl: autogenerate _libxl_types.h, Ian Campbell
- [Xen-devel] [PATCH 05 of 16] libxl: generate destructors for each libxl defined type, Ian Campbell
- [Xen-devel] [PATCH 08 of 16] libxl: do not generate a destructor for data types which do not require one, Ian Campbell
- [Xen-devel] [PATCH 09 of 16] libxl: implement destroy for libxl_file_reference builtin type, Ian Campbell
- [Xen-devel] [PATCH 10 of 16] xl: free the libxl types contained in struct domain_config, Ian Campbell
- [Xen-devel] [PATCH 13 of 16] libxl/xl: use libxl_diskinfo_destroy and libxl_device_disk_destroy, Ian Campbell
- [Xen-devel] [PATCH 12 of 16] xl: destroy device model info after creation, Ian Campbell
- [Xen-devel] [PATCH 11 of 16] libxl: use libxl_version_info_destroy instead of hand-coded do_free_version_info,
Ian Campbell <=
- [Xen-devel] [PATCH 15 of 16] libxl/xl: Use libxl_vcpuinfo_destroy, Ian Campbell
- [Xen-devel] [PATCH 16 of 16] xl: use libxl_device_pci_destroy, Ian Campbell
- [Xen-devel] [PATCH 14 of 16] libxl/xl: Use libxl_device_nic_destroy and libxl_nicinfo_destroy, Ian Campbell
|
|
|
|
|