Re: [XEN PATCH v1 3/4] automation: add python3 package for riscv64.dockerfile

2022-12-28 Thread Oleksii
On Wed, 2022-12-28 at 23:26 +, Andrew Cooper wrote: > On 23/12/2022 11:16 am, Oleksii Kurochko wrote: > > Pyhton3 package is requited by automation/scripts/build > > script so it shoud be installed to riscv64 docker image > > Is it?  This series runs fine without it. > It is used by automati

[xen-unstable test] 175517: tolerable FAIL - PUSHED

2022-12-28 Thread osstest service owner
flight 175517 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/175517/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-xl-qemut-win7-amd64 19 guest-stopfail like 175511 test-amd64-i386-xl-qemuu-win7-amd64

[linux-5.4 test] 175515: regressions - FAIL

2022-12-28 Thread osstest service owner
flight 175515 linux-5.4 real [real] http://logs.test-lab.xenproject.org/osstest/logs/175515/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-qemuu-rhel6hvm-intel broken in 175407 test-amd64-amd64-xl-credit2

[linux-linus test] 175514: regressions - FAIL

2022-12-28 Thread osstest service owner
flight 175514 linux-linus real [real] http://logs.test-lab.xenproject.org/osstest/logs/175514/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-coresched-amd64-xl 8 xen-bootfail REGR. vs. 173462 test-amd64-amd64-xl

Re: [XEN PATCH v1 3/4] automation: add python3 package for riscv64.dockerfile

2022-12-28 Thread Andrew Cooper
On 23/12/2022 11:16 am, Oleksii Kurochko wrote: > Pyhton3 package is requited by automation/scripts/build > script so it shoud be installed to riscv64 docker image Is it?  This series runs fine without it. When we get around to compiling userspace, then we do need a python interpreter for the bui

Re: [XEN PATCH v1 2/4] automation: add cross-compiler support for the build script

2022-12-28 Thread Andrew Cooper
On 23/12/2022 11:16 am, Oleksii Kurochko wrote: > diff --git a/automation/scripts/build b/automation/scripts/build > index a593419063..026f480e76 100755 > --- a/automation/scripts/build > +++ b/automation/scripts/build > @@ -2,12 +2,12 @@ > > test -f /etc/os-release && cat "$_" > > -$CC --vers

Re: [XEN PATCH v1 1/4] arch/riscv: initial RISC-V support to build/run minimal Xen

2022-12-28 Thread Julien Grall
On Mon, 26 Dec 2022 at 12:14, Oleksii wrote: > > > > > +/* > > > + * PAGE_SIZE is defined in <{asm,xen}/page-*.h> but to > > > + * remove unnecessary headers for minimal > > > + * build headers it will be better to set PAGE_SIZE > > > + * explicitly. > > > > TBH, I think this is a shortcut that i

[xen-unstable-smoke test] 175516: tolerable all pass - PUSHED

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

Re: [XEN PATCH v1 1/4] arch/riscv: initial RISC-V support to build/run minimal Xen

2022-12-28 Thread Andrew Cooper
On 28/12/2022 4:51 am, Alistair Francis wrote: > On Mon, Dec 26, 2022 at 9:14 PM Oleksii wrote: >> On Fri, 2022-12-23 at 13:50 +, Julien Grall wrote: >>> On 23/12/2022 11:16, Oleksii Kurochko wrote: + . = ALIGN(PAGE_SIZE); + .bss : { + __bss_start = .; + *(.bs

Re: [XEN PATCH v1 1/4] arch/riscv: initial RISC-V support to build/run minimal Xen

2022-12-28 Thread Andrew Cooper
On 23/12/2022 11:16 am, Oleksii Kurochko wrote: > diff --git a/xen/arch/riscv/Makefile b/xen/arch/riscv/Makefile > index 942e4ffbc1..893dd19ea6 100644 > --- a/xen/arch/riscv/Makefile > +++ b/xen/arch/riscv/Makefile > @@ -1,2 +1,32 @@ > +obj-$(CONFIG_RISCV_64) += riscv64/ > + > +$(TARGET): $(TARGET)

Re: [PATCH] xen: define PADDR_BITS for riscv

2022-12-28 Thread Andrew Cooper
On 28/12/2022 5:20 am, Alistair Francis wrote: > From: Alistair Francis > > Define PADDR_BITS and PAGE_SHIFT for the RISC-V 64-bit architecture. > > Signed-off-by: Alistair Francis Thanks.  I've committed this with a tweak to the subject (its not just PADDR_BITS your adding), and a tweak to the

[linux-5.4 test] 175513: FAIL

2022-12-28 Thread osstest service owner
flight 175513 linux-5.4 real [real] http://logs.test-lab.xenproject.org/osstest/logs/175513/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-i386-xl-qemuu-ws16-amd64 broken in 175407 test-amd64-a

[linux-linus test] 175512: regressions - FAIL

2022-12-28 Thread osstest service owner
flight 175512 linux-linus real [real] http://logs.test-lab.xenproject.org/osstest/logs/175512/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-coresched-amd64-xl 8 xen-bootfail REGR. vs. 173462 test-amd64-amd64-xl

Re: [XEN PATCH v1 1/4] arch/riscv: initial RISC-V support to build/run minimal Xen

2022-12-28 Thread Oleksii
Alistair, Thanks for your comments! On Wed, 2022-12-28 at 14:51 +1000, Alistair Francis wrote: > On Mon, Dec 26, 2022 at 9:14 PM Oleksii > wrote: > > > > Hi Julien, > > > > Thanks for your comments. > > > > On Fri, 2022-12-23 at 13:50 +, Julien Grall wrote: > > > Hi Oleksii, > > > > > >

[xen-unstable test] 175511: tolerable FAIL

2022-12-28 Thread osstest service owner
flight 175511 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/175511/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-xl-qemut-win7-amd64 19 guest-stopfail like 175502 test-amd64-i386-xl-qemuu-win7-amd64