search for: libxl_json

Displaying 14 results from an estimated 14 matches for "libxl_json".

2013 Jul 05
6
[PATCH] libxl_json: Fix backport of JSON_BOOL to 4.2.2
Commit 2b3072ed0cbeed8c0385f20e92ba0f1201db8a17 has the setting of obj->u.b Commit 6a2aca9fdef0499e613715baf107f2296b9007cf does not. This shows up by vnc-port and vnc-listen are missing in xenstore when they should not be. Signed-off-by: Don Slutz <dslutz@verizon.com> --- tools/libxl/libxl_json.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tools/libxl/libxl_json.c b/tools/libxl/libxl_json.c index 72b52e8..0810630 100644 --- a/tools/libxl/libxl_json.c +++ b/tools/libxl/libxl_json.c @@ -474,6 +474,7 @@ static int json_callback_boolean(void *opaque, int boolean)...
2012 Jan 15
2
[PATCH v3] libxl: add support for yajl 2.x
...au@entel.upc.edu> # Date 1326606960 -3600 # Node ID a1986ef30b7dab4f60fe5cda70856f5751a9fde2 # Parent cd47dde439e688cac244c7eb9f55d826c85c844f libxl: add support for yajl 2.x This patch adds support for yajl versions 2.x, while retaining 1.x compatibility. All the needed ifdefs can be found in libxl_json.h. Tested with yajl 2.0.3 and 1.0.12. Changes since v2: * Moved all ifdefs to libxl_json.h, as Ian Jackson suggested. Changes since v1: * Check if yajl_version.h is present before trying to include it. Signed-off-by: Roger Pau Monne <roger.pau@entel.upc.edu> diff -r cd47dde439e6 -r a...
2012 Sep 06
7
[PATCH] xl: Introduce shutdown xm compatibility option -a to shutdown all domains
docs/man/xl.pod.1 | 6 +++++- tools/libxl/xl_cmdimpl.c | 39 ++++++++++++++++++++++++++++++++++++--- tools/libxl/xl_cmdtable.c | 3 ++- 3 files changed, 43 insertions(+), 5 deletions(-) xl: Introduce shutdown xm compatibility option -a to shutdown all domains Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it> diff -r 9dc729b75595 -r 67f9ef649937 docs/man/xl.pod.1 ---
2014 Feb 13
0
trouble with building latest xen code
.../tools/xenstore -Wl,-rpath-link=/home/aasthakm/workspace/ibc/source/xen/tools/libxl/../../tools/blktap2/control /home/aasthakm/workspace/ibc/source/xen/tools/libxl/../../tools/libxc/libxenctrl.so -lyajl xl_cmdimpl.o: In function `libxl_yajl_gen_alloc': /home/workspace/ibc/source/xen/tools/libxl/libxl_json.h:60: undefined reference to `yajl_gen_config' /home/workspace/ibc/source/xen/tools/libxl/libxl_json.h:60: undefined reference to `yajl_gen_config' /home/workspace/ibc/source/xen/tools/libxl/../../tools/libxl/libxenlight.so: undefined reference to `yajl_complete_parse' collect2: ld retu...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...tpath, *outputdir, *logfile; char *diskpath; /* not from gc, represents actually attached disk */ @@ -1803,7 +1823,6 @@ struct libxl__domain_create_state { * for the non-stubdom device model. */ }; - /* * Convenience macros. */ diff -r ac45608496cd -r cdb947baea10 tools/libxl/libxl_json.c --- a/tools/libxl/libxl_json.c Thu May 17 16:39:51 2012 +0100 +++ b/tools/libxl/libxl_json.c Thu May 17 17:51:32 2012 +0100 @@ -252,15 +252,6 @@ out: return s; } -yajl_gen_status libxl_file_reference_gen_json(yajl_gen hand, - libxl_file_referen...
2011 Dec 20
26
[PATCH v2] libxl: add support for yajl 2.x
...IBUUID_LIBS += -luuid endif +ifeq ($(CONFIG_YAJL_VERSION),y) +CFLAGS += -DHAVE_YAJL_VERSION +endif + LIBXL_LIBS = LIBXL_LIBS = $(LDLIBS_libxenctrl) $(LDLIBS_libxenguest) $(LDLIBS_libxenstore) $(LDLIBS_libblktapctl) $(UTIL_LIBS) $(LIBUUID_LIBS) diff -r f72b99fccfca -r 716d6d48e647 tools/libxl/libxl_json.c --- a/tools/libxl/libxl_json.c Tue Dec 20 08:31:40 2011 +0100 +++ b/tools/libxl/libxl_json.c Tue Dec 20 13:52:55 2011 +0100 @@ -519,7 +519,11 @@ static bool is_decimal(const char *s, un return false; } +#ifdef HAVE_YAJL_V2 +static int json_callback_number(void *opaque, const char *s, size...
2012 Feb 03
3
Build problems with latest xen-unstable.hg
I''m building xen-devel from scratch for the first time in a long time on a clean EL6u1 machine and running into a couple of problems. 1) The build of tools/firmware/etherboot does a wget of a weird pxe tar file that looks like it has a git hash in the filename. I hacked around that (to wget the 1.0.0 version of the file). 2) Building blktap2 complains about a missing
2012 Feb 09
7
[PATCH V2 0/3] Set VNC password to QEMU upstream
Anthony PERARD (3): libxl_qmp: Use GC instead of CTX as parameter for _initialize. Provide dm_vnc() as a in libxl helper. libxl: Set VNC password through QMP tools/libxl/libxl_create.c | 2 +- tools/libxl/libxl_dm.c | 32 ++++++++++++++---------- tools/libxl/libxl_internal.h | 7 ++++- tools/libxl/libxl_qmp.c | 55 ++++++++++++++++++++++++++++++----------- 4 files
2012 Apr 04
10
[PATCH 0 of 2] libxl: add libxl_domain_config_init
The following series implements libxl_domain_config_init as per the libxl API requirement that each type has an init function. The first function does this in an open coded manner and is proposed for Xen 4.2. The second function is RFC only since it moves the definition of this type into the IDL and makes the required infrastructure updates to enable this. I think this is more 4.3 material at
2012 Jul 04
53
[PATCH 00 of 10 v3] Automatic NUMA placement for xl
Hello, Third version of the NUMA placement series Xen 4.2. All the comments received during v2''s review have been addressed (more details in single changelogs). The most notable changes are the following: - the libxl_cpumap --> libxl_bitmap renaming has been rebased on top of the recent patches that allows us to allocate bitmaps of different sizes; - the heuristics for deciding
2013 Jul 12
16
preparing for 4.2.3 and 4.1.6
Aiming at a release some time in August, I''d like to cut RC1-s by Thursday next week (as I''ll be on a two week vacation starting Friday). Please indicate any bug fixes that so far may have been missed in the backports already done. A few fixes are currently stuck in master''s staging branch (or pending to make it there) - these don''t need to be named explicitly,
2012 Feb 20
18
[PATCH] libxl: fix compile error of libvirt
...libxl/MakefileMon Feb 20 15: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)...
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
2013 Apr 18
9
[PATCH v5 1/2] libxl: Introduce functions to add and remove USB devices to an HVM guest
.../libxl_usb.c diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index 2984051..866960a 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@ -74,7 +74,7 @@ LIBXL_OBJS = flexarray.o libxl.o libxl_create.o libxl_dm.o libxl_pci.o \ libxl_internal.o libxl_utils.o libxl_uuid.o \ libxl_json.o libxl_aoutils.o libxl_numa.o \ libxl_save_callout.o _libxl_save_msgs_callout.o \ - libxl_qmp.o libxl_event.o libxl_fork.o $(LIBXL_OBJS-y) + libxl_qmp.o libxl_event.o libxl_fork.o libxl_usb.o $(LIBXL_OBJS-y) LIBXL_OBJS += _libxl_types.o libxl_flask.o _libxl_types_internal.o $(LIBXL_OBJ...