search for: _libxl_types_json

Displaying 5 results from an estimated 5 matches for "_libxl_types_json".

2012 May 30
10
[xen-unstable test] 12988: regressions - FAIL
flight 12988 xen-unstable real [real] http://www.chiark.greenend.org.uk/~xensrcts/logs/12988/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: build-i386-oldkern 4 xen-build fail REGR. vs. 12979 Regressions which are regarded as allowable (not blocking): test-amd64-amd64-xl-qemuu-win7-amd64 12
2012 Feb 20
18
[PATCH] libxl: fix compile error of libvirt
...36:09 2012 +0800 @@ -163,7 +163,7 @@ ln -sf libxlutil.so.$(XLUMAJOR).$(XLUMINOR) $(DESTDIR)$(LIBDIR)/libxlutil.so.$(XLUMAJOR) ln -sf libxlutil.so.$(XLUMAJOR) $(DESTDIR)$(LIBDIR)/libxlutil.so $(INSTALL_DATA) libxlutil.a $(DESTDIR)$(LIBDIR) -$(INSTALL_DATA) libxl.h libxl_json.h _libxl_types.h _libxl_types_json.h _libxl_list.h libxl_utils.h libxl_uuid.h $(DESTDIR)$(INCLUDEDIR) +$(INSTALL_DATA) libxl.h libxl_json.h _libxl_types.h _libxl_types_json.h _libxl_list.h libxl_utils.h libxl_uuid.h libxl_event.h $(DESTDIR)$(INCLUDEDIR) $(INSTALL_DATA) bash-completion $(DESTDIR)$(BASH_COMPLETION_DIR)/xl.sh ....
2012 Jan 15
2
[PATCH v3] libxl: add support for yajl 2.x
...h Sat Jan 14 19:04:48 2012 +0100 +++ b/tools/libxl/libxl_json.h Sun Jan 15 06:56:00 2012 +0100 @@ -16,8 +16,55 @@ #define LIBXL_JSON_H #include <yajl/yajl_gen.h> +#include <yajl/yajl_parse.h> + +#ifdef HAVE_YAJL_VERSION +# include <yajl/yajl_version.h> +#endif #include <_libxl_types_json.h> #include <_libxl_types_internal_json.h> +/* YAJL version check */ +#if defined(YAJL_MAJOR) && (YAJL_MAJOR > 1) +# define HAVE_YAJL_V2 1 +#endif + +#ifdef HAVE_YAJL_V2 +typedef size_t libxl_yajl_length; + +static inline yajl_handle libxl__yajl_alloc(const yajl_callbacks *c...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...hand, libxl_key_value_list *p); -yajl_gen_status libxl_file_reference_gen_json(yajl_gen hand, - libxl_file_reference *p); yajl_gen_status libxl_hwcap_gen_json(yajl_gen hand, libxl_hwcap *p); #include <_libxl_types_json.h> diff -r ac45608496cd -r cdb947baea10 tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Thu May 17 16:39:51 2012 +0100 +++ b/tools/libxl/libxl_types.idl Thu May 17 17:51:32 2012 +0100 @@ -15,8 +15,6 @@ libxl_cpuid_policy_list = Builtin("cpuid libxl_string_list = Builtin(&qu...
2011 Dec 20
26
[PATCH v2] libxl: add support for yajl 2.x
...647 tools/libxl/libxl_json.h --- a/tools/libxl/libxl_json.h Tue Dec 20 08:31:40 2011 +0100 +++ b/tools/libxl/libxl_json.h Tue Dec 20 13:52:55 2011 +0100 @@ -17,7 +17,16 @@ #include <yajl/yajl_gen.h> +#ifdef HAVE_YAJL_VERSION +# include <yajl/yajl_version.h> +#endif + #include <_libxl_types_json.h> #include <_libxl_types_internal_json.h> +/* YAJL version check */ +#if defined(YAJL_MAJOR) && (YAJL_MAJOR > 1) +# define HAVE_YAJL_V2 1 +#endif + #endif /* LIBXL_JSON_H */ diff -r f72b99fccfca -r 716d6d48e647 tools/libxl/libxl_qmp.c --- a/tools/libxl/libxl_qmp.c Tue Dec...