Re: Problems while booting a linux system on fast models based CortexA15

2013-05-18 Thread Alexander Spyridakis
On 18 May 2013 03:26, Mai Daftedar wrote: > > I still have no luck in bringing up the host on fast models. > There is something I'm definitely missing out : > > Theses are my suggested potential errors: > When I execute the following command as mentioned in the pdf > mkfs.ext3 ./disk.img > > The f

Re: [Qemu-devel] KVM call for agenda for 2014-12-08

2014-12-09 Thread Alexander Spyridakis
Hello, Is this call still going to happen today? I haven't yet received the contact details. Thanks and best regards. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-in

[kvm-unit-tests PATCH 1/2] arm/arm64: Add self-modifying code test

2015-09-02 Thread Alexander Spyridakis
Basic torture test that continuously modifies a single instruction opcode and checks if all modifications were done and run as expected. Signed-off-by: Alexander Spyridakis --- arm/self-modifying-test.c| 109 +++ config/config-arm-common.mak | 2

[kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-02 Thread Alexander Spyridakis
Properly clean any generated object and binary files after a 'make clean', this fixes an issue when trying to reconfigure between arm and arm64. Signed-off-by: Alexander Spyridakis --- config/config-arm.mak | 2 ++ config/config-arm64.mak | 3 ++- 2 files changed, 4 insertions(+),

[kvm-unit-tests PATCH 0/2] arm/arm64: Add self-modifying code test case

2015-09-02 Thread Alexander Spyridakis
The test case is meant for testing the new mttcg implementation, although it was also verified on KVM targets like Arndale and OMAP5-uevm for ARMv7 and the Juno board (aarch32 and aarch64 guests) for ARMv8. Alexander Spyridakis (2): arm/arm64: Add self-modifying code test arm/arm64 c

Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-04 Thread Alexander Spyridakis
On 4 September 2015 at 12:48, Andrew Jones wrote: > Are you also running configure (with the opposite arch selected) after > 'make clean'? If not, then that could be the source of your problems. > Anyway, please describe the issues you're seeing because I don't see > what this patch is doing that

Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-04 Thread Alexander Spyridakis
On 4 September 2015 at 12:48, Andrew Jones wrote: > The lines this > patch adds are already there. See the arm_clean target in > config/config-arm-common.mak. I see your point now. Maybe then "arm_clean" should be changed in "arch_clean" in config-arm-common.mak? Regards. -- To unsubscribe from

Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-04 Thread Alexander Spyridakis
On 4 September 2015 at 16:05, Andrew Jones wrote: > This doesn't reproduce for me. I did the following, and it worked > fine. > > make distclean > ./configure --arch=arm --cross-prefix=arm-linux-gnu- > make > ./configure --arch=arm64 --cross-prefix=aarch64-linux-gnu- > make clean && make This is

[PATCH] KVM: arm/arm64: Fix PSCI affinity info return value for non valid cores

2015-09-04 Thread Alexander Spyridakis
If a guest requests the affinity info for a non-existing vCPU we need to properly return an error, instead of erroneously reporting an off state. Signed-off-by: Alexander Spyridakis Signed-off-by: Alvise Rigo --- arch/arm/kvm/psci.c | 12 1 file changed, 8 insertions(+), 4

Re: [PATCH] KVM: arm/arm64: Fix PSCI affinity info return value for non valid cores

2015-09-04 Thread Alexander Spyridakis
On 4 September 2015 at 17:54, Marc Zyngier wrote: > Seems sound to me. Out of curiosity, how was this found? Hello Mark, This issue came up when testing some basic bare metal tests with KVM, which originally were meant for the multi-threading TCG effort (https://git.virtualopensystems.com/dev/tc

Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-07 Thread Alexander Spyridakis
On 4 September 2015 at 16:05, Andrew Jones wrote: > This doesn't reproduce for me. I did the following, and it worked > fine. > > make distclean > ./configure --arch=arm --cross-prefix=arm-linux-gnu- > make > ./configure --arch=arm64 --cross-prefix=aarch64-linux-gnu- > make clean && make Ok I thi

Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule

2015-09-07 Thread Alexander Spyridakis
On 7 September 2015 at 16:37, Andrew Jones wrote: > +SHELL := /bin/bash This indeed fixed the issue. Thanks. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html