Displaying 10 results from an estimated 10 matches for "libxlu_cfg_y".
2012 Sep 11
4
[PATCH] libxl: Tolerate xl config files missing trailing newline
...Should this go into 4.2.0 or be held for 4.2.1 (or is it not 4.2.x
material at all) ?
Ian.
From: Ian Jackson <ian.jackson@eu.citrix.com>
Subject: [PATCH] libxl: Tolerate xl config files missing trailing newline
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
tools/libxl/libxlu_cfg_y.c | 154 +++++++++++++++++++++++---------------------
tools/libxl/libxlu_cfg_y.y | 12 ++-
2 files changed, 88 insertions(+), 78 deletions(-)
diff --git a/tools/libxl/libxlu_cfg_y.c b/tools/libxl/libxlu_cfg_y.c
index 5214386..218933e 100644
--- a/tools/libxl/libxlu_cfg_y.c
+++ b/tools/libxl/lib...
2012 Aug 14
12
[TESTDAY] xl cpupool-create segfaults if given invalid configuration
# xl cpupool-create ''name="pool2" sched="credit2"''
command line:2: config parsing error near `sched'': syntax error,
unexpected IDENT, expecting NEWLINE or '';''
Failed to parse config file: Invalid argument
*** glibc detected *** xl: free(): invalid pointer: 0x0000000001a79a10 ***
Segmentation fault (core dumped)
Looking at the code
2013 Aug 20
1
xen 4.4 code bug
So i am getting this
cc1: warning: -Wformat-nonliteral ignored without -Wformat
[-Wformat-nonliteral]
libxlu_cfg_y.c: In function ''xlu__cfg_yyparse'':
libxlu_cfg_y.c:1292:41: error: ''scanner'' undeclared (first use in this
function)
yychar = yylex (&yylval, &yylloc, scanner);
^
libxlu_cfg_y.c:1292:41: note: each undeclared...
2010 Aug 03
1
[PATCH] libxl: free values in XLU_ConfigSetting
...f 3
==21170== at 0x4022F0A: malloc (vg_replace_malloc.c:236)
==21170== by 0x411B22F: strdup (in /lib/i686/cmov/libc-2.7.so)
==21170== by 0x4030085: xlu__cfgl_strdup (libxlu_cfg.c:290)
==21170== by 0x402F3C4: xlu__cfg_yylex (libxlu_cfg_l.l:37)
==21170== by 0x402DD86: xlu__cfg_yyparse (libxlu_cfg_y.c:1338)
==21170== by 0x40308AE: xlu_cfg_readdata (libxlu_cfg.c:85)
==21170== by 0x804DBE4: parse_config_data (xl_cmdimpl.c:591)
==21170== by 0x8056EE4: create_domain (xl_cmdimpl.c:1381)
==21170== by 0x80582AE: main_create (xl_cmdimpl.c:3178)
==21170== by 0x804B54B: main (xl.c:76)
==2...
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 Apr 12
6
fatal error if Flex and Bison is not configured
Hi all,
I try to build xen 4.2( revision number: 25161) on Ubuntu 11.10_amd64, Mac
pro. After running ./configure and make. I got the following fatal error:
*libxlu_cfg_y.y:22:26: fatal error: libxlu_cfg_l.h: No such file or
directory compilation terminated.*
So the original libxlu_cfg_l.h is deleted when making, and should be
regenerated but it is not. I find the path of flex and bison is not set.
When I add the correct path of flex and bison in tools.mk manually...
2012 Dec 04
1
libxl: stable-4.2 git tree dirty after a build
...eaving around
generated files in a modified state after a build:
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working
directory)
#
# modified: tools/libxl/libxlu_cfg_y.c
# modified: tools/libxl/libxlu_cfg_y.h
Unstable does not leave these files modified, as far as I can see - Though
a simple diff of the 2 libxl dirs does not make it immediately obvious what
might be modifying these files.
Does anyone have any pointers on a changeset to cherry-pick?
_______...
2012 Aug 24
0
[xen-unstable test] 13627: regressions - FAIL
...sstest.git;a=summary
Not pushing.
------------------------------------------------------------
changeset: 25784:1126b3079bef
tag: tip
user: Ian Jackson <Ian.Jackson@eu.citrix.com>
date: Fri Aug 24 12:38:18 2012 +0100
libxl: Rerun bison
This updates libxlu_cfg_y.[ch] to code generated by bison from
Debian squeeze (1:2.4.1.dfsg-3 i386).
There should be no functional change since there is no change to the
source file, but we will inherit bugfixes and behavioural changes from
the new version of bison. So this is more a matter of hope tha...
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in
the libxl interface followed by auto-generation of a destructor
function for each type. In the future it may be possible to use the
related data structures for other purposes, for example auto-generation
of the functions to marshal between C and language binding data types.
tools/_libxl_types.h should be identical both before
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have
been applied. These are the tested and updated remainder, addressing
the previous comments.
1 Preparatory work.
2-4 The new parser and its documentation.
5-6 Replace old parsers with calls to the new one.
7-8 Two features, one of them essential.
9 Basic test suite for disk string parsing, as adhoc script.