[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 13 of 26] libxl: libxl_device_console.build_state is const
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1281969065 -3600 # Node ID f8c43de0c6d661c1662c8a34d5838b8755ae8fde # Parent 5567b7c1b303d6f54d76a0efe63353701a12dad3 libxl: libxl_device_console.build_state is const This field always refers to a libxl_domain_build_state structure which is managed already by the caller, therefore it is incorrect to free it as part of libxl_device_console_destroy. (arguably this field should be a copy of, not a reference too, the original) Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> diff -r 5567b7c1b303 -r f8c43de0c6d6 tools/libxl/libxltypes.idl --- a/tools/libxl/libxltypes.idl Mon Aug 16 15:31:05 2010 +0100 +++ b/tools/libxl/libxltypes.idl Mon Aug 16 15:31:05 2010 +0100 @@ -195,7 +195,7 @@ libxl_device_console = Struct("device_co ("domid", domid), ("devid", integer), ("consback", libxl_console_consback), - ("build_state", Reference(libxl_domain_build_state)), + ("build_state", Reference(libxl_domain_build_state), True), ("output", string), ]) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |