[Xen-devel] [linux-3.18 test] 101584: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101584 linux-3.18 real [real] http://logs.test-lab.xenproject.org/osstest/logs/101584/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 6 xen-boot fail REGR. vs. 101000

[Xen-devel] [xen-unstable test] 101590: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101590 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/101590/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-xl-credit2 15 guest-start/debian.repeat fail REGR. vs. 101563 Regressions which

Re: [Xen-devel] [PATCH v2 2/2] Xen/timer: Process softirq during dumping timer info

2016-10-21 Thread Lan, Tianyu
On 10/22/2016 1:27 AM, Wei Liu wrote: On Wed, Oct 12, 2016 at 03:58:24PM +0800, Lan Tianyu wrote: Dumping timer info may run for a long time on the huge machine with a lot of physical cpus. To avoid triggering NMI watchdog, add process_pending_softirqs() in the loop of dumping timer info.

[Xen-devel] [PATCH] Xen: Force non-irq keyhandler to be run in tasklet when receive a debugkey from serial port

2016-10-21 Thread Lan Tianyu
__serial_rx() runs in either irq handler or timer handler and non-irq keyhandler should not run in these contexts. So always force non-irq keyhandler to run in tasklet when receive a debugkey from serial port Signed-off-by: Lan Tianyu --- xen/drivers/char/console.c | 2 +-

[Xen-devel] [ovmf baseline-only test] 67922: all pass

2016-10-21 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 67922 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/67922/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 3e14edf82031845233f3825ac9239609c0ee98fc baseline

Re: [Xen-devel] [PATCH v2] xen:rtds:Fix bug in budget accounting

2016-10-21 Thread Meng Xu
On Fri, Oct 21, 2016 at 10:11 PM, Meng Xu wrote: > Bug scenario: > While a VCPU is running on a core, it may misses its deadline. > Then repl_timer_handler() will update the VCPU period and deadline. > The VCPU may have high priority with the new deadline and

[Xen-devel] [PATCH v2] xen:rtds:Fix bug in budget accounting

2016-10-21 Thread Meng Xu
Bug scenario: While a VCPU is running on a core, it may misses its deadline. Then repl_timer_handler() will update the VCPU period and deadline. The VCPU may have high priority with the new deadline and repl_timer_handler() decides to keep the VCPU running on the core, but with new period and

[Xen-devel] [PATCH] xen:rtds:Clear __RTDS_depleted bit once replenish vcpu

2016-10-21 Thread Meng Xu
We should clear the __RTDS_depleted bit once a VCPU budget is replenished. Because repl_timer_handler may be called after rt_schedule but before rt_context_saved, the VCPU may be not on CPU or on queue when the VCPU is the middle of context switch Signed-off-by: Meng Xu ---

Re: [Xen-devel] [PATCH RFC 6/6] xen/arm: platforms/tegra: ensure the hwdom can only affect its own interrupts

2016-10-21 Thread Stefano Stabellini
On Mon, 5 Sep 2016, Kyle Temkin wrote: > From: "Kyle J. Temkin" > > Several Tegra hardware devices-- and the Tegra device tree-- expect > the presence of a Tegra Legacy Interrupt Controller (LIC) in the hardware > domain. Accordingly, we'll need to expose (most of) the

[Xen-devel] [ovmf test] 101591: all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101591 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/101591/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 3e14edf82031845233f3825ac9239609c0ee98fc baseline version: ovmf

Re: [Xen-devel] [PATCH RFC 5/6] xen/arm: Add function to query IRQ 'ownership'.

2016-10-21 Thread Stefano Stabellini
On Fri, 16 Sep 2016, Konrad Rzeszutek Wilk wrote: > On Mon, Sep 05, 2016 at 06:14:00AM -0400, Kyle Temkin wrote: > > From: "Kyle J. Temkin" > > > > The addition of new IRQ-related platform hooks now allow platforms to > > perform platform-specific interrupt logic; allowing

Re: [Xen-devel] [PATCH RFC 4/6] xen/arm: platforms: Add Tegra platform to support basic IRQ routing.

2016-10-21 Thread Stefano Stabellini
Thanks for the patch! I would like to see it in Xen 4.9. On Fri, 16 Sep 2016, Konrad Rzeszutek Wilk wrote: > On Mon, Sep 05, 2016 at 06:13:59AM -0400, Kyle Temkin wrote: > > From: "Kyle J. Temkin" > > > > Tegra devices have a legacy interrupt controller (lic, or ictlr)

Re: [Xen-devel] [PATCH RFC 3/6] xen/arm: Allow platforms to hook IRQ routing.

2016-10-21 Thread Stefano Stabellini
On Mon, 5 Sep 2016, Kyle Temkin wrote: > From: "Kyle J. Temkin" > > Some common platforms (e.g. Tegra) have non-traditional IRQ controllers > that must be programmed in addition to their primary GICs-- and which > can come in unusual topologies. Device trees for targets

Re: [Xen-devel] [PATCH RFC 2/6] xen/arm: hwdom GIC: inherit interrupt parent from host device tree

2016-10-21 Thread Stefano Stabellini
Sorry for the late review, I promise I'll be faster next time :-) On Mon, 5 Sep 2016, Kyle Temkin wrote: > From: "Kyle J. Temkin" > > Currently, we don't copy in the interrupt parent from the host device > tree; and instead let Xen automatically figure it out when

Re: [Xen-devel] [PATCH RFC 1/6] xen/arm: platforms: Add earlyprintk and serial support for Tegra boards.

2016-10-21 Thread Stefano Stabellini
On Tue, 13 Sep 2016, Konrad Rzeszutek Wilk wrote: > On Mon, Sep 05, 2016 at 06:13:56AM -0400, Kyle Temkin wrote: > > From: "Kyle J. Temkin" > > > > Tegra boards feature a NS16550-compatible serial mapped into the MMIO > > space. Add support for its use both as a

[Xen-devel] Test Xen 4.8 RC3 FULL SUCCESS 21.10.16

2016-10-21 Thread Juergen Schinker
* Hardware: Intel(R) Xeon(R) CPU E3-1220L V2 @ 2.30GHz Sandisk SSD 32G Ram * Software: Debian Stretch/testing is dom0 * Guest operating systems: Guests Ubuntu 14.04 LTS Debian Stretch/Sid Ubuntu 16.10 with latest 4.8 kernel crashes * Functionality tested: xl creating booting pygrub

Re: [Xen-devel] [PATCH] xen:rtds:fix bug in accounting budget

2016-10-21 Thread Meng Xu
On Fri, Oct 21, 2016 at 1:36 PM, Dario Faggioli wrote: > > On Wed, 2016-10-19 at 11:13 -0400, Meng Xu wrote: > > The bug is introduced in Xen 4.7 when we converted RTDS scheduler > > from quantum-driven model to event-driven model. > > We assumed rt_schedule() is always

Re: [Xen-devel] [PATCH v2 0/2] Remove PAGE_SIZE from public headers

2016-10-21 Thread Stefano Stabellini
On Fri, 21 Oct 2016, Wei Liu wrote: > On Thu, Oct 20, 2016 at 01:38:35PM -0700, Stefano Stabellini wrote: > > On Thu, 20 Oct 2016, Andrew Cooper wrote: > > > On 20/10/16 21:04, Stefano Stabellini wrote: > > > > On Thu, 20 Oct 2016, Andrew Cooper wrote: > > > >> On 20/10/16 20:09, Stefano

Re: [Xen-devel] [PATCH v2 0/2] Remove PAGE_SIZE from public headers

2016-10-21 Thread Stefano Stabellini
On Fri, 21 Oct 2016, Wei Liu wrote: > On Thu, Oct 20, 2016 at 09:05:26PM +0100, Andrew Cooper wrote: > > On 20/10/16 21:04, Stefano Stabellini wrote: > > > On Thu, 20 Oct 2016, Andrew Cooper wrote: > > >> On 20/10/16 20:09, Stefano Stabellini wrote: > > >>> On Thu, 20 Oct 2016, Juergen Gross

[Xen-devel] [PULL 2/3] xen_platform: unplug also SCSI disks

2016-10-21 Thread Stefano Stabellini
From: Olaf Hering Using 'vdev=sd[a-o]' will create an emulated LSI controller, which can be used by the emulated BIOS to boot from disk. If the HVM domU has also PV driver the disk may appear twice in the guest. To avoid this an unplug of the emulated hardware is needed, similar

[Xen-devel] [PULL 1/3] xen-usb: do not reference PAGE_SIZE

2016-10-21 Thread Stefano Stabellini
PAGE_SIZE is undefined on ARM64. Use XC_PAGE_SIZE instead, which is always 4096 even when page granularity is 64K. For this to actually work with 64K pages, more changes are required. Signed-off-by: Stefano Stabellini Reviewed-by: Juergen Gross

[Xen-devel] [PULL 0/3] tags/xen-20161021-tag

2016-10-21 Thread Stefano Stabellini
/xen-20161021-tag for you to fetch changes up to 35132016dc1c27de2b1354b161df6cc22f3ac5bf: xen_platform: SUSE xenlinux unplug for emulated PCI (2016-10-21 12:11:38 -0700) Xen 2016/10/21

[Xen-devel] [PULL 3/3] xen_platform: SUSE xenlinux unplug for emulated PCI

2016-10-21 Thread Stefano Stabellini
From: Olaf Hering Implement SUSE specific unplug protocol for emulated PCI devices in PVonHVM guests. Its a simple 'outl(1, (ioaddr + 4));'. This protocol was implemented and used since Xen 3.0.4. It is used in all SUSE/SLES/openSUSE releases up to SLES11SP3 and openSUSE 12.3. In

[Xen-devel] [xen-unstable-smoke test] 101592: tolerable all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101592 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/101592/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 12 migrate-support-checkfail never pass test-armhf-armhf-xl

Re: [Xen-devel] [PATCH v3 2/2] xen_platform: SUSE xenlinux unplug for emulated PCI

2016-10-21 Thread Stefano Stabellini
On Fri, 21 Oct 2016, Olaf Hering wrote: > Implement SUSE specific unplug protocol for emulated PCI devices > in PVonHVM guests. Its a simple 'outl(1, (ioaddr + 4));'. > This protocol was implemented and used since Xen 3.0.4. > It is used in all SUSE/SLES/openSUSE releases up to SLES11SP3 and >

Re: [Xen-devel] [PATCH v3 1/2] xen_platform: unplug also SCSI disks

2016-10-21 Thread Stefano Stabellini
On Fri, 21 Oct 2016, Olaf Hering wrote: > Using 'vdev=sd[a-o]' will create an emulated LSI controller, which can > be used by the emulated BIOS to boot from disk. If the HVM domU has also > PV driver the disk may appear twice in the guest. To avoid this an > unplug of the emulated hardware is

[Xen-devel] [qemu-mainline test] 101574: regressions - trouble: broken/fail/pass

2016-10-21 Thread osstest service owner
flight 101574 qemu-mainline real [real] http://logs.test-lab.xenproject.org/osstest/logs/101574/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt-qcow2 12 saverestore-support-check fail REGR. vs. 101443

[Xen-devel] [ovmf baseline-only test] 67921: all pass

2016-10-21 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 67921 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/67921/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf a750b4ae24ce072f7c5ced1b89c18f9cc23debc8 baseline

[Xen-devel] [linux-3.10 test] 101576: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101576 linux-3.10 real [real] http://logs.test-lab.xenproject.org/osstest/logs/101576/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ovmf-amd64 6 xen-boot fail REGR. vs. 100648

Re: [Xen-devel] [PATCH] xen:rtds:fix bug in accounting budget

2016-10-21 Thread Dario Faggioli
On Wed, 2016-10-19 at 11:13 -0400, Meng Xu wrote: > The bug is introduced in Xen 4.7 when we converted RTDS scheduler > from quantum-driven model to event-driven model. > We assumed rt_schedule() is always called for a VCPU > before the VCPUs budget replenished handler. > No, we didn't. Or at

Re: [Xen-devel] [PATCH v2 2/2] Xen/timer: Process softirq during dumping timer info

2016-10-21 Thread Wei Liu
On Wed, Oct 12, 2016 at 03:58:24PM +0800, Lan Tianyu wrote: > Dumping timer info may run for a long time on the huge machine with > a lot of physical cpus. To avoid triggering NMI watchdog, add > process_pending_softirqs() in the loop of dumping timer info. > > Reviewed-by: Konrad Rzeszutek Wilk

Re: [Xen-devel] [PATCH] libxl: only free vcpu info list when it is allocated

2016-10-21 Thread Dario Faggioli
On Fri, 2016-10-21 at 18:17 +0100, Wei Liu wrote: > Clang complains nr_dom_vcpus may be used uninitialized after > 4a6070ea9. > > The real issue is vinfo can be NULL and nr_dom_vcpus remains > uninitialized if previous call fails. > If it were me doing this, I'd just have initialized

[Xen-devel] [PATCH] libxl: only free vcpu info list when it is allocated

2016-10-21 Thread Wei Liu
Clang complains nr_dom_vcpus may be used uninitialized after 4a6070ea9. The real issue is vinfo can be NULL and nr_dom_vcpus remains uninitialized if previous call fails. Instead of initializing nr_dom_vcpus to 0, check if vinfo is NULL before calling the free function, because that function

Re: [Xen-devel] [xen-unstable test] 101571: regressions - FAIL

2016-10-21 Thread Wei Liu
On Fri, Oct 21, 2016 at 05:47:52PM +0100, Andrew Cooper wrote: > On 21/10/16 17:38, Wei Liu wrote: > > On Fri, Oct 21, 2016 at 03:45:02PM +, osstest service owner wrote: > >> flight 101571 xen-unstable real [real] > >> http://logs.test-lab.xenproject.org/osstest/logs/101571/ > >> > >>

Re: [Xen-devel] [xen-unstable test] 101571: regressions - FAIL

2016-10-21 Thread Andrew Cooper
On 21/10/16 17:38, Wei Liu wrote: > On Fri, Oct 21, 2016 at 03:45:02PM +, osstest service owner wrote: >> flight 101571 xen-unstable real [real] >> http://logs.test-lab.xenproject.org/osstest/logs/101571/ >> >> Regressions :-( >> >> Tests which did not succeed and are blocking, >> including

Re: [Xen-devel] [xen-unstable test] 101571: regressions - FAIL

2016-10-21 Thread Wei Liu
On Fri, Oct 21, 2016 at 03:45:02PM +, osstest service owner wrote: > flight 101571 xen-unstable real [real] > http://logs.test-lab.xenproject.org/osstest/logs/101571/ > > Regressions :-( > > Tests which did not succeed and are blocking, > including tests which could not be run: >

[Xen-devel] [ovmf test] 101582: all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101582 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/101582/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf a750b4ae24ce072f7c5ced1b89c18f9cc23debc8 baseline version: ovmf

[Xen-devel] [xen-unstable-smoke test] 101583: tolerable all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101583 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/101583/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 12 migrate-support-checkfail never pass test-armhf-armhf-xl

Re: [Xen-devel] [PATCH v5] x86/Intel: virtualize support for cpuid faulting

2016-10-21 Thread Kyle Huey
On Thu, Oct 20, 2016 at 9:19 AM, Andrew Cooper wrote: > On 20/10/16 15:15, Wei Liu wrote: >> On Thu, Oct 20, 2016 at 06:44:26AM -0700, Kyle Huey wrote: >>> rr (http://rr-project.org/), a Linux userspace record-and-replay reverse- >>> execution debugger, would like to

Re: [Xen-devel] [PATCH v3 2/2] x86/Intel: virtualize support for cpuid faulting

2016-10-21 Thread Kyle Huey
On Thu, Oct 20, 2016 at 7:40 AM, Boris Ostrovsky wrote: > On 10/20/2016 10:11 AM, Andrew Cooper wrote: >> On 20/10/16 14:55, Kyle Huey wrote: > That said, rr currently does not work in Xen guests due to some PMU > issues that we haven't tracked down yet.

[Xen-devel] [xen-unstable test] 101571: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101571 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/101571/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt 6 xen-boot fail REGR. vs. 101563

Re: [Xen-devel] [PATCH/RFC 0/5] cpu_relax: introduce yield, remove lowlatency

2016-10-21 Thread David Miller
From: Christian Borntraeger Date: Fri, 21 Oct 2016 17:08:54 +0200 > On 10/21/2016 04:57 PM, David Miller wrote: >> From: Christian Borntraeger >> Date: Fri, 21 Oct 2016 13:58:53 +0200 >> >>> For spinning loops people did often use barrier() or

Re: [Xen-devel] [PATCH/RFC 0/5] cpu_relax: introduce yield, remove lowlatency

2016-10-21 Thread Christian Borntraeger
On 10/21/2016 04:57 PM, David Miller wrote: > From: Christian Borntraeger > Date: Fri, 21 Oct 2016 13:58:53 +0200 > >> For spinning loops people did often use barrier() or cpu_relax(). >> For most architectures cpu_relax and barrier are the same, but on >> some

[Xen-devel] [linux-3.18 test] 101570: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101570 linux-3.18 real [real] http://logs.test-lab.xenproject.org/osstest/logs/101570/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 6 xen-boot fail REGR. vs. 101000

Re: [Xen-devel] [PATCH v2] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Wei Liu
On Fri, Oct 21, 2016 at 03:49:30PM +0200, Dario Faggioli wrote: > During NUMA automatic placement, the information > of how many vCPUs can run on what NUMA nodes is used, > in order to spread the load as evenly as possible. > > Such information is derived from vCPU hard and soft > affinity, but

[Xen-devel] [PATCH v2] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Dario Faggioli
During NUMA automatic placement, the information of how many vCPUs can run on what NUMA nodes is used, in order to spread the load as evenly as possible. Such information is derived from vCPU hard and soft affinity, but that is not enough. In fact, affinity can be set to be a superset of the

Re: [Xen-devel] PCI passthrough to QEMU traditional stubdom not working when option ROM present

2016-10-21 Thread Samuel Thibault
Hello, Eric Shelton, on Fri 21 Oct 2016 09:01:43 -0400, wrote: > ERROR: PCI region size must be pow2 type=0x8, size=0xdf08 > u32 u = pci_read_long(d, reg); > if (u != 0x) > - d->rom_base_addr = u; > +{ > + d->rom_base_addr = u; >

Re: [Xen-devel] [PATCH] docs:RTDS: Correct mistakes in feature doc

2016-10-21 Thread Dario Faggioli
On Wed, 2016-10-19 at 10:48 -0400, Meng Xu wrote: > Correct the mistakes in the example command > Correct a simple typo. > > Signed-off-by: Meng Xu > Acked-by: Dario Faggioli Regards, Dario -- <> (Raistlin Majere)

[Xen-devel] PCI passthrough to QEMU traditional stubdom not working when option ROM present

2016-10-21 Thread Eric Shelton
I am running Xen 4.6.3 (with Marek's recent patches at https://lists.xen.org/archives/html/xen-devel/2016-10/msg01122.html) and Linux 4.4.14. qemu-traditional (running in a stubdom) exits due to an error when I try doing passthrough of a PCI device that includes an option/expansion ROM.

Re: [Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Dario Faggioli
On Fri, 2016-10-21 at 11:29 +0100, Wei Liu wrote: > On Fri, Oct 21, 2016 at 11:56:14AM +0200, Dario Faggioli wrote: > > diff --git a/tools/libxl/libxl_numa.c b/tools/libxl/libxl_numa.c > > index 33289d5..f2a719d 100644 > > --- a/tools/libxl/libxl_numa.c > > +++ b/tools/libxl/libxl_numa.c > > @@

[Xen-devel] [ovmf baseline-only test] 67920: all pass

2016-10-21 Thread Platform Team regression test user
This run is configured for baseline tests only. flight 67920 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/67920/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 55d05ae145145dafdd77a7c6f5c0b3677096cbde baseline

Re: [Xen-devel] [PATCH 2/5] stop_machine: yield CPU during stop machine

2016-10-21 Thread Juergen Gross
On 21/10/16 14:05, Peter Zijlstra wrote: > On Fri, Oct 21, 2016 at 01:58:55PM +0200, Christian Borntraeger wrote: >> stop_machine can take a very long time if the hypervisor does >> overcommitment for guest CPUs. When waiting for "the one", lets >> give up our CPU by using the new cpu_relax_yield.

[Xen-devel] [PATCH v3 1/2] xen_platform: unplug also SCSI disks

2016-10-21 Thread Olaf Hering
Using 'vdev=sd[a-o]' will create an emulated LSI controller, which can be used by the emulated BIOS to boot from disk. If the HVM domU has also PV driver the disk may appear twice in the guest. To avoid this an unplug of the emulated hardware is needed, similar to what is done for IDE and NIC

[Xen-devel] [PATCH v3 0/2] Xen HVM unplug changes

2016-10-21 Thread Olaf Hering
Update unplug in Xen HVM guests to cover more cases. Please review. changes in v3: - adapt to API changes from 49137bf ("block-backend: remove blk_flush_all") changes in v2: - fix issues reported by checkpatch Olaf Hering (2): xen_platform: unplug also SCSI disks xen_platform: SUSE

[Xen-devel] [PATCH v3 2/2] xen_platform: SUSE xenlinux unplug for emulated PCI

2016-10-21 Thread Olaf Hering
Implement SUSE specific unplug protocol for emulated PCI devices in PVonHVM guests. Its a simple 'outl(1, (ioaddr + 4));'. This protocol was implemented and used since Xen 3.0.4. It is used in all SUSE/SLES/openSUSE releases up to SLES11SP3 and openSUSE 12.3. In addition old (pre-2011) VMDP

[Xen-devel] [distros-debian-jessie test] 67919: regressions - FAIL

2016-10-21 Thread Platform Team regression test user
flight 67919 distros-debian-jessie real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/67919/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-i386-jessie-netboot-pvgrub 10 guest-start fail REGR. vs. 67877 Tests

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

2016-10-21 Thread osstest service owner
flight 101577 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/101577/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: build-i386-xsm5 xen-buildfail REGR. vs. 101572 build-amd64

Re: [Xen-devel] [PATCH 3/8] xen/pvh: Import PVH-related Xen public interfaces

2016-10-21 Thread Juergen Gross
On 14/10/16 20:05, Boris Ostrovsky wrote: > Signed-off-by: Boris Ostrovsky Reviewed-by: Juergen Gross Juergen ___ Xen-devel mailing list Xen-devel@lists.xen.org https://lists.xen.org/xen-devel

Re: [Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Wei Liu
On Fri, Oct 21, 2016 at 12:50:58PM +0200, Juergen Gross wrote: > On 21/10/16 12:29, Wei Liu wrote: > > On Fri, Oct 21, 2016 at 11:56:14AM +0200, Dario Faggioli wrote: > >> During NUMA automatic placement, the information > >> of how many vCPUs can run on what NUMA nodes is used, > >> in order to

[Xen-devel] [xen-unstable-smoke test] 101575: tolerable all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101575 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/101575/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 12 migrate-support-checkfail never pass test-armhf-armhf-xl

Re: [Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Juergen Gross
On 21/10/16 11:56, Dario Faggioli wrote: > During NUMA automatic placement, the information > of how many vCPUs can run on what NUMA nodes is used, > in order to spread the load as evenly as possible. > > Such information is derived from vCPU hard and soft > affinity, but that is not enough. In

Re: [Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Juergen Gross
On 21/10/16 12:29, Wei Liu wrote: > On Fri, Oct 21, 2016 at 11:56:14AM +0200, Dario Faggioli wrote: >> During NUMA automatic placement, the information >> of how many vCPUs can run on what NUMA nodes is used, >> in order to spread the load as evenly as possible. >> >> Such information is derived

[Xen-devel] [libvirt test] 101573: regressions - all pass

2016-10-21 Thread osstest service owner
flight 101573 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/101573/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt-qcow2 12 saverestore-support-check fail REGR. vs. 101477

[Xen-devel] [ovmf test] 101572: all pass - PUSHED

2016-10-21 Thread osstest service owner
flight 101572 ovmf real [real] http://logs.test-lab.xenproject.org/osstest/logs/101572/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 55d05ae145145dafdd77a7c6f5c0b3677096cbde baseline version: ovmf

Re: [Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Wei Liu
On Fri, Oct 21, 2016 at 11:56:14AM +0200, Dario Faggioli wrote: > During NUMA automatic placement, the information > of how many vCPUs can run on what NUMA nodes is used, > in order to spread the load as evenly as possible. > > Such information is derived from vCPU hard and soft > affinity, but

[Xen-devel] [PATCH] libxl: avoid considering pCPUs outside of the cpupool during NUMA placement

2016-10-21 Thread Dario Faggioli
During NUMA automatic placement, the information of how many vCPUs can run on what NUMA nodes is used, in order to spread the load as evenly as possible. Such information is derived from vCPU hard and soft affinity, but that is not enough. In fact, affinity can be set to be a superset of the

[Xen-devel] [ANNOUNCEMENT] Xen 4.8 RC3

2016-10-21 Thread Wei Liu
Hi all Xen 4.8 rc3 is tagged. You can check that out from xen.git: git://xenbits.xen.org/xen.git 4.8.0-rc3 For you convenience, please find tarball and signature at: https://downloads.xenproject.org/release/xen/4.8.0-rc3/ Please send bug reports and test reports to

Re: [Xen-devel] [PATCH v2 0/2] Remove PAGE_SIZE from public headers

2016-10-21 Thread Wei Liu
On Thu, Oct 20, 2016 at 01:38:35PM -0700, Stefano Stabellini wrote: > On Thu, 20 Oct 2016, Andrew Cooper wrote: > > On 20/10/16 21:04, Stefano Stabellini wrote: > > > On Thu, 20 Oct 2016, Andrew Cooper wrote: > > >> On 20/10/16 20:09, Stefano Stabellini wrote: > > >>> On Thu, 20 Oct 2016, Juergen

Re: [Xen-devel] [PATCH v2 0/2] Remove PAGE_SIZE from public headers

2016-10-21 Thread Wei Liu
On Thu, Oct 20, 2016 at 09:05:26PM +0100, Andrew Cooper wrote: > On 20/10/16 21:04, Stefano Stabellini wrote: > > On Thu, 20 Oct 2016, Andrew Cooper wrote: > >> On 20/10/16 20:09, Stefano Stabellini wrote: > >>> On Thu, 20 Oct 2016, Juergen Gross wrote: > On 19/10/16 21:21,

Re: [Xen-devel] [PATCH v2] x86/apicv: fix RTC periodic timer and apicv issue

2016-10-21 Thread Tian, Kevin
Sorry I haven't got on this thread yet, but want you know it's on my list (hopefully will respond next week). > -Original Message- > From: Xuquan (Quan Xu) [mailto:xuqu...@huawei.com] > Sent: Monday, October 17, 2016 5:28 PM > To: Xuquan (Quan Xu); Tian, Kevin; Jan Beulich > Cc: Andrew

[Xen-devel] [qemu-mainline test] 101568: regressions - FAIL

2016-10-21 Thread osstest service owner
flight 101568 qemu-mainline real [real] http://logs.test-lab.xenproject.org/osstest/logs/101568/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-libvirt-xsm 13 saverestore-support-check fail REGR. vs. 101443