[Xen-devel] [qemu-upstream-4.3-testing test] 94942: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94942 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94942/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [ovmf test] 94940: regressions - FAIL

2016-05-29 Thread osstest service owner
flight 94940 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/94940/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 17 guest-start/debianhvm.repeat fail REGR. vs. 94748

[Xen-devel] [PATCH 2/2] libxl: replace deprecated readdir_r() with readdir()

2016-05-29 Thread Chris Patterson
From: Chris Patterson Replace the usage of readdir_r() with readdir() to address a compilation error due to the deprecation of readdir_r. glibc has deprecated this for their next release (2.24): https://sourceware.org/bugzilla/show_bug.cgi?id=19056 This also removes

[Xen-devel] [PATCH 1/2] libfsimage: replace deprecated readdir_r() with readdir()

2016-05-29 Thread Chris Patterson
From: Chris Patterson Replace the usage of readdir_r() with readdir() to address a compilation error due to the deprecation of readdir_r. glibc has deprecated this for their next release (2.24): https://sourceware.org/bugzilla/show_bug.cgi?id=19056 Signed-off-by: Chris

Re: [Xen-devel] [PATCH v2 3/4] xen:arm: arm64: Add correct MPIDR_HWID_MASK value for ARM64

2016-05-29 Thread Wei Chen
On 27 May 2016 at 18:50, Julien Grall wrote: > Hi Wei, > > On 26/05/16 08:58, Wei Chen wrote: >> >> Currently, MPIDR_HWID_MASK is using the bit definition of AArch32 MPIDR. >> From ARMv8 ARM we can see there are 4 levels of affinity on AArch64 >> whilst AArch32 has only 3.

[Xen-devel] [PATCH 1/1] tools/xsplice: cleanup unnecessary "j = ARRAY_SIZE(action_options); "

2016-05-29 Thread Dongli Zhang
Local variable "j" would be used only when "i == ARRAY_SIZE(main_options)" is true. Thus, it is not necessary to update "j" when "i == ARRAY_SIZE(main_options)" is false. Signed-off-by: Dongli Zhang --- tools/misc/xen-xsplice.c | 3 +-- 1 file changed, 1 insertion(+), 2

[Xen-devel] [qemu-upstream-4.3-testing test] 94930: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94930 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94930/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [ovmf test] 94932: regressions - FAIL

2016-05-29 Thread osstest service owner
flight 94932 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/94932/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 17 guest-start/debianhvm.repeat fail REGR. vs. 94748

Re: [Xen-devel] [BUG] On bdw-ep, failed to offline/online socket1 cpu on Dom0

2016-05-29 Thread Chao Peng
On Fri, May 27, 2016 at 04:08:00AM -0600, Jan Beulich wrote: > >>> On 27.05.16 at 08:25, wrote: > > Bug detailed description: > > 1:When offline all the socket1 cpus , network segment hang . > > 2:When online all the socket1 cpus , it show "(XEN) Panic on CPU 44:". > >

[Xen-devel] [PATCH v4 6/8] tools/libxc: add xc_monitor_privileged_call

2016-05-29 Thread Tamas K Lengyel
These are the user-space components for the new ARM SMC events. Signed-off-by: Tamas K Lengyel Acked-by: Wei Liu --- Cc: Ian Jackson --- tools/libxc/include/xenctrl.h | 2 ++ tools/libxc/xc_monitor.c | 24

[Xen-devel] [PATCH v4 3/8] monitor: Rename hvm/event to hvm/monitor

2016-05-29 Thread Tamas K Lengyel
Mechanical renaming to better describe that the code in hvm/event is part of the monitor subsystem. Signed-off-by: Tamas K Lengyel Acked-by: Kevin Tian --- Cc: Jan Beulich Cc: Andrew Cooper Cc: Razvan

[Xen-devel] [PATCH v4 8/8] x86/vm_event: Add HVM debug exception vm_events

2016-05-29 Thread Tamas K Lengyel
Since in-guest debug exceptions are now unconditionally trapped to Xen, adding a hook for vm_event subscribers to tap into this new always-on guest event. We rename along the way hvm_event_breakpoint_type to hvm_event_type to better match the various events that can be passed with it. We also

[Xen-devel] [PATCH v4 7/8] tools/xen-access: add test-case for ARM SMC

2016-05-29 Thread Tamas K Lengyel
Signed-off-by: Tamas K Lengyel Acked-by: Razvan Cojocaru --- Cc: Ian Jackson Cc: Wei Liu --- tools/tests/xen-access/xen-access.c | 48 ++--- 1 file changed, 45

[Xen-devel] [PATCH v4 5/8] arm/vm_event: get/set registers

2016-05-29 Thread Tamas K Lengyel
Add support for getting/setting registers through vm_event on ARM. Signed-off-by: Tamas K Lengyel --- Cc: Stefano Stabellini Cc: Julien Grall Cc: Razvan Cojocaru v4: Use psr mode to determine

[Xen-devel] [PATCH v4 2/8] monitor: Rename vm_event_monitor_guest_request

2016-05-29 Thread Tamas K Lengyel
Mechanical renaming and relocation to the monitor subsystem. Signed-off-by: Tamas K Lengyel --- Cc: Stefano Stabellini Cc: Julien Grall Cc: Jan Beulich Cc: Andrew Cooper Cc:

[Xen-devel] [PATCH v4 4/8] monitor: ARM SMC events

2016-05-29 Thread Tamas K Lengyel
Add support for monitoring ARM SMC events. This patch only adds the required bits to enable/disable monitoring and forwarding the event through vm_event. Signed-off-by: Tamas K Lengyel Acked-by: Razvan Cojocaru --- Cc: Stefano Stabellini

[Xen-devel] [PATCH v4 1/8] monitor: Rename vm_event_monitor_get_capabilities

2016-05-29 Thread Tamas K Lengyel
The monitor_get_capabilities check actually belongs to the monitor subsystem so relocating and renaming it to sanitize the code's name and location. Mechanical patch, no code changes introduced. Signed-off-by: Tamas K Lengyel Acked-by: Andrew Cooper

[Xen-devel] [ovmf test] 94924: regressions - FAIL

2016-05-29 Thread osstest service owner
flight 94924 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/94924/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 17 guest-start/debianhvm.repeat fail REGR. vs. 94748

[Xen-devel] [qemu-upstream-4.3-testing test] 94925: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94925 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94925/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [qemu-upstream-4.3-testing test] 94916: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94916 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94916/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [ovmf test] 94910: regressions - FAIL

2016-05-29 Thread osstest service owner
flight 94910 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/94910/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 17 guest-start/debianhvm.repeat fail REGR. vs. 94748

[Xen-devel] [qemu-upstream-4.3-testing test] 94915: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94915 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94915/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [xen-unstable test] 94905: tolerable FAIL

2016-05-29 Thread osstest service owner
flight 94905 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/94905/ Failures :-/ but no regressions. Tests which are failing intermittently (not blocking): test-armhf-armhf-xl-rtds 11 guest-startfail in 94895 pass in 94905 test-amd64-amd64-xl-pvh-amd 9

[Xen-devel] [xen-unstable-coverity test] 94914: all pass - PUSHED

2016-05-29 Thread osstest service owner
flight 94914 xen-unstable-coverity real [real] http://logs.test-lab.xenproject.org/osstest/logs/94914/ Perfect :-) All tests in this flight passed version targeted for testing: xen 5ff371e9d87f468bf73acfafd65ba5a0d1b7bd4f baseline version: xen

[Xen-devel] [qemu-upstream-4.3-testing test] 94908: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94908 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94908/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken

[Xen-devel] [ovmf test] 94902: regressions - FAIL

2016-05-29 Thread osstest service owner
flight 94902 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/94902/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 17 guest-start/debianhvm.repeat fail REGR. vs. 94748

[Xen-devel] [qemu-upstream-4.3-testing test] 94904: trouble: blocked/broken

2016-05-29 Thread osstest service owner
flight 94904 qemu-upstream-4.3-testing real [real] http://logs.test-lab.xenproject.org/osstest/logs/94904/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: build-amd64 3 host-install(3) broken