[Xen-devel] [qemu-upstream-4.4-testing test] 77478: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77478 qemu-upstream-4.4-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77478/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-ovmf-amd64 9 debian-hvm-install fail REGR. vs. 62702 test-am

[Xen-devel] [distros-debian-stretch test] 38607: tolerable FAIL

2016-01-09 Thread Platform Team regression test user
flight 38607 distros-debian-stretch real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/38607/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-amd64-amd64-amd64-stretch-netboot-pvgrub 10 guest-start fail blocked in 38582 Tests whic

[Xen-devel] [qemu-mainline test] 77410: tolerable FAIL - PUSHED

2016-01-09 Thread osstest service owner
flight 77410 qemu-mainline real [real] http://logs.test-lab.xenproject.org/osstest/logs/77410/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-armhf-armhf-xl-rtds 9 debian-installfail REGR. vs. 66433 Tests which did not succeed,

[Xen-devel] [qemu-upstream-4.5-testing test] 77426: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77426 qemu-upstream-4.5-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77426/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-ovmf-amd64 9 debian-hvm-install fail REGR. vs. 62414 test-am

[Xen-devel] [seabios test] 77427: tolerable FAIL - PUSHED

2016-01-09 Thread osstest service owner
flight 77427 seabios real [real] http://logs.test-lab.xenproject.org/osstest/logs/77427/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-amd64-amd64-xl-qemuu-win7-amd64 16 guest-stop fail like 77260 Tests which did not succeed, but a

Re: [Xen-devel] [PATCH 1/2] build: introduce CONFIG_NR_CPUS in Kconfig

2016-01-09 Thread Andrew Cooper
On 08/01/2016 23:17, Doug Goldstein wrote: > Introduce an option where the user can modifiy the maximum number of > supported physical CPUs. > > CC: Ian Campbell > CC: Stefano Stabellini > CC: Keir Fraser > CC: Jan Beulich > CC: Andrew Cooper > Signed-off-by: Doug Goldstein > --- > This patch

[Xen-devel] [xen-4.6-testing test] 77441: tolerable FAIL - PUSHED

2016-01-09 Thread osstest service owner
flight 77441 xen-4.6-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77441/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-armhf-armhf-libvirt 11 guest-start fail REGR. vs. 65639 test-amd64-i386-rumpuserxe

[Xen-devel] [PATCH] xen/spinlock: Use mnemonics for recursive spinlock sentinel values

2016-01-09 Thread Andrew Cooper
Fix a fencepost error in the BUILD_BUG_ON() check. The sentinel must be distinct from any legal cpu id. No resulting change. The compiled binary is identical. Signed-off-by: Andrew Cooper --- CC: Jan Beulich CC: Tim Deegan CC: Ian Campbell CC: Doug Goldstein Noticed while reviewing Doug's

Re: [Xen-devel] [PATCH 2/2] build: convert NR_CPUS to Kconfig

2016-01-09 Thread Andrew Cooper
On 08/01/16 23:17, Doug Goldstein wrote: > diff --git a/xen/common/spinlock.c b/xen/common/spinlock.c > index 7f89694..9207179 100644 > --- a/xen/common/spinlock.c > +++ b/xen/common/spinlock.c > @@ -246,7 +246,7 @@ int _spin_trylock_recursive(spinlock_t *lock) > unsigned int cpu = smp_process

Re: [Xen-devel] [PATCH v4 2/5] build: Hook the schedulers into Kconfig

2016-01-09 Thread Andrew Cooper
On 08/01/16 21:22, Jonathan Creekmore wrote: > +# Enable schedulers > +menu "Schedulers" > + visible if EXPERT = "y" > + > +config SCHED_CREDIT > + bool "Credit scheduler support" > + default y > + ---help--- > + The traditional credit scheduler is a general purpose scheduler.

Re: [Xen-devel] [PATCH v4 2/5] build: Hook the schedulers into Kconfig

2016-01-09 Thread Jonathan Creekmore
Andrew Cooper writes: > On 08/01/16 21:22, Jonathan Creekmore wrote: >> +# Enable schedulers >> +menu "Schedulers" >> +visible if EXPERT = "y" >> + >> +config SCHED_CREDIT >> +bool "Credit scheduler support" >> +default y >> +---help--- >> + The traditional credit scheduler i

Re: [Xen-devel] [PATCH v4 2/5] build: Hook the schedulers into Kconfig

2016-01-09 Thread Andrew Cooper
On 09/01/16 17:50, Jonathan Creekmore wrote: > Andrew Cooper writes: > >> On 08/01/16 21:22, Jonathan Creekmore wrote: >>> +# Enable schedulers >>> +menu "Schedulers" >>> + visible if EXPERT = "y" >>> + >>> +config SCHED_CREDIT >>> + bool "Credit scheduler support" >>> + default y >>> + ---

[Xen-devel] [xen-4.5-testing test] 77498: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77498 xen-4.5-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77498/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-win7-amd64 15 guest-localmigrate/x10 fail REGR. vs. 66426 Regressions

Re: [Xen-devel] [PATCH v4 3/5] build: Alloc space for sched list in the link file

2016-01-09 Thread Andrew Cooper
On 08/01/16 21:22, Jonathan Creekmore wrote: > Creates a section to contain scheduler entry pointers that are gathered > together into an array. This will allow, in a follow-on patch, scheduler > entries to be automatically gathered together into the array for > automatic parsing. > > CC: Ian Campb

Re: [Xen-devel] [PATCH v4 5/5] sched: Use the auto-generated list of schedulers

2016-01-09 Thread Andrew Cooper
On 08/01/16 21:22, Jonathan Creekmore wrote: > diff --git a/xen/common/schedule.c b/xen/common/schedule.c > index 2f98a48..91e53c1 100644 > --- a/xen/common/schedule.c > +++ b/xen/common/schedule.c > @@ -64,20 +64,10 @@ static void poll_timer_fn(void *data); > DEFINE_PER_CPU(struct schedule_data,

[Xen-devel] [linux-next test] 77502: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77502 linux-next real [real] http://logs.test-lab.xenproject.org/osstest/logs/77502/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemut-debianhvm-amd64 12 guest-saverestore fail REGR. vs. 77218 test-amd64-amd64

[Xen-devel] [xen-4.4-testing test] 77506: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77506 xen-4.4-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77506/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-win7-amd64 15 guest-localmigrate/x10 fail REGR. vs. 66458 Regressions

[Xen-devel] [qemu-mainline baseline-only test] 38609: tolerable FAIL

2016-01-09 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 38609 qemu-mainline real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/38609/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-amd64-amd64-xl 19 guest-start/debian.repe

[Xen-devel] Building issues of python (error: -Wl, -rpath-link=../../tools/libs/toollog: No such file or directory) with gcc4.4

2016-01-09 Thread Konrad Rzeszutek Wilk
Hey, I am not sure exactly what is wrong here and I can only guess that it is GCC version but maybe it is python? Anyhow when I am in tools/python directory I get: FC-64 make install DESTDIR=/home/konrad/ssd/konrad/xtt-x86_64/bootstrap/xen.git/dist/install /home/konrad/ssd/konrad/xtt-x86_64/b

Re: [Xen-devel] Building issues of python (error: -Wl, -rpath-link=../../tools/libs/toollog: No such file or directory) with gcc4.4

2016-01-09 Thread Andrew Cooper
On 09/01/2016 21:07, Konrad Rzeszutek Wilk wrote: > Hey, > > I am not sure exactly what is wrong here and I can only guess that > it is GCC version but maybe it is python? > > Anyhow when I am in tools/python directory I get: > > > FC-64 make install > DESTDIR=/home/konrad/ssd/konrad/xtt-x86_64/b

Re: [Xen-devel] [PATCH v4 5/5] sched: Use the auto-generated list of schedulers

2016-01-09 Thread Jonathan Creekmore
Andrew Cooper writes: > On 08/01/16 21:22, Jonathan Creekmore wrote: >> diff --git a/xen/common/schedule.c b/xen/common/schedule.c >> index 2f98a48..91e53c1 100644 >> --- a/xen/common/schedule.c >> +++ b/xen/common/schedule.c >> @@ -64,20 +64,10 @@ static void poll_timer_fn(void *data); >> DEFIN

Re: [Xen-devel] [PATCH v4 3/5] build: Alloc space for sched list in the link file

2016-01-09 Thread Jonathan Creekmore
Andrew Cooper writes: > On 08/01/16 21:22, Jonathan Creekmore wrote: >> Creates a section to contain scheduler entry pointers that are gathered >> together into an array. This will allow, in a follow-on patch, scheduler >> entries to be automatically gathered together into the array for >> automa

Re: [Xen-devel] [PATCH v4 2/5] build: Hook the schedulers into Kconfig

2016-01-09 Thread Jonathan Creekmore
Andrew Cooper writes: > On 09/01/16 17:50, Jonathan Creekmore wrote: >> Andrew Cooper writes: >> >>> On 08/01/16 21:22, Jonathan Creekmore wrote: +# Enable schedulers +menu "Schedulers" + visible if EXPERT = "y" + +config SCHED_CREDIT + bool "Credit scheduler suppo

[Xen-devel] [seabios baseline-only test] 38610: tolerable FAIL

2016-01-09 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 38610 seabios real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/38610/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-amd64-amd64-qemuu-nested-intel 13 xen-boot/l1

[Xen-devel] [linux-mingo-tip-master test] 77510: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77510 linux-mingo-tip-master real [real] http://logs.test-lab.xenproject.org/osstest/logs/77510/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-rumpuserxen-i386 10 guest-start fail REGR. vs. 60684 Tests whic

[Xen-devel] [libvirt test] 77517: tolerable FAIL - PUSHED

2016-01-09 Thread osstest service owner
flight 77517 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/77517/ Failures :-/ but no regressions. Regressions which are regarded as allowable (not blocking): test-amd64-amd64-libvirt-vhd 9 debian-di-installfail like 77324 Tests which did not succeed, but a

[Xen-devel] [xen-4.3-testing test] 77515: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77515 xen-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77515/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 15 guest-localmigrate/x10 fail REGR. vs. 65650 Tests w

[Xen-devel] [qemu-upstream-4.3-testing test] 77541: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77541 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77541/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: build-i3865 xen-build fail REGR. vs. 62112 build-a

[Xen-devel] [xen-4.6-testing baseline-only test] 38611: regressions - FAIL

2016-01-09 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 38611 xen-4.6-testing real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/38611/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-winxpsp3 6 xen-bo

[Xen-devel] [qemu-upstream-4.2-testing test] 77544: regressions - FAIL

2016-01-09 Thread osstest service owner
flight 77544 qemu-upstream-4.2-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/77544/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: build-i3865 xen-build fail REGR. vs. 62044 build-a