Re: [PATCH] target-mips: Ignore unassigned accesses with KVM

2014-07-28 Thread Aurelien Jarno
Cc: Aurelien Jarno aurel...@aurel32.net Cc: Peter Maydell peter.mayd...@linaro.org Cc: Paolo Bonzini pbonz...@redhat.com Cc: Gleb Natapov g...@redhat.com Cc: Christoffer Dall christoffer.d...@linaro.org Cc: Sanjay Lal sanj...@kymasys.com --- target-mips/op_helper.c | 11 +++ 1 file

Re: [PATCH 1/4] mips/kvm: Init EBase to correct KSEG0

2014-06-27 Thread Aurelien Jarno
it correctly now so as not to break migration/loadvm to a future version of QEMU that does support EBase. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Paolo Bonzini pbonz...@redhat.com --- target-mips/translate.c | 8 +++- 1 file changed, 7

Re: [PATCH 3/4] mips_malta: Remove incorrect KVM TE references

2014-06-27 Thread Aurelien Jarno
. Reported-by: Andreas Färber afaer...@suse.de Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Paolo Bonzini pbonz...@redhat.com --- hw/mips/mips_malta.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/mips/mips_malta.c

Re: [PATCH 2/4] mips_malta: Change default KVM cpu to 24Kc (no FP)

2014-06-27 Thread Aurelien Jarno
expose it, however we should ensure it is set correctly now to reduce the risk of breaking migration/loadvm to a future version of QEMU/Linux that does support them. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Paolo Bonzini pbonz...@redhat.com

Re: [PATCH 4/4] mips_malta: Catch kernels linked at wrong address

2014-06-27 Thread Aurelien Jarno
. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Paolo Bonzini pbonz...@redhat.com --- hw/mips/mips_malta.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c index 76cf5f2c48f4

Re: [Qemu-devel] [PATCH v5 10/12] hw/mips: malta: Add KVM support

2014-06-20 Thread Aurelien Jarno
On Fri, Jun 20, 2014 at 02:07:05AM -0400, Paolo Bonzini wrote: - Messaggio originale - Da: Aurelien Jarno aurel...@aurel32.net A: Sanjay Lal sanj...@kymasys.com Cc: James Hogan james.ho...@imgtec.com, qemu-de...@nongnu.org, Peter Maydell peter.mayd...@linaro.org, kvm

Re: [Qemu-devel] [PATCH v5 10/12] hw/mips: malta: Add KVM support

2014-06-20 Thread Aurelien Jarno
On Fri, Jun 20, 2014 at 12:38:30PM +0200, Paolo Bonzini wrote: Il 20/06/2014 11:10, Aurelien Jarno ha scritto: My idea was to add a machines-specific option umkernel=on, and require it in order to run KVM. Later we can add umkernel=on support for TCG as well, while umkernel=off with KVM

Re: [Qemu-devel] [PATCH v5 10/12] hw/mips: malta: Add KVM support

2014-06-20 Thread Aurelien Jarno
On Fri, Jun 20, 2014 at 10:25:24AM +0100, James Hogan wrote: On 19/06/14 22:47, Aurelien Jarno wrote: On Thu, Jun 19, 2014 at 12:34:24PM -0700, Sanjay Lal wrote: On Jun 19, 2014, at 9:27 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Tue, Jun 17, 2014 at 11:10:35PM +0100, James Hogan

Re: [Qemu-devel] [PATCH v5 10/12] hw/mips: malta: Add KVM support

2014-06-19 Thread Aurelien Jarno
) won't work and that this should be forbidden to the user. Based on [PATCH 12/12] KVM/MIPS: General KVM support and support for SMP Guests by Sanjay Lal sanj...@kymasys.com. Signed-off-by: James Hogan james.ho...@imgtec.com Reviewed-by: Aurelien Jarno aurel...@aurel32.net Cc: Peter Maydell

Re: [PATCH v5 00/12] KVM Support for MIPS32 Processors

2014-06-19 Thread Aurelien Jarno
for that part. -- Aurelien Jarno GPG: 4096R/1DDD8C9B aurel...@aurel32.net http://www.aurel32.net -- 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

Re: [Qemu-devel] [PATCH v5 10/12] hw/mips: malta: Add KVM support

2014-06-19 Thread Aurelien Jarno
On Thu, Jun 19, 2014 at 12:34:24PM -0700, Sanjay Lal wrote: On Jun 19, 2014, at 9:27 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Tue, Jun 17, 2014 at 11:10:35PM +0100, James Hogan wrote: In KVM mode the bootrom is loaded and executed from the last 1MB of DRAM. What

Re: [PATCH v2 08/10] hw/mips: In KVM mode, inject IRQ2 (I/O) interupts via ioctls

2013-12-21 Thread Aurelien Jarno
+ CP0Ca_IP)); + +if (kvm_enabled() irq == 2) { +kvm_mips_set_interrupt(env, irq, level); +} } if (env-CP0_Cause CP0Ca_IP_mask) { Reviewed-by: Aurelien Jarno aurel...@aurel32.net -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel

Re: [PATCH v2 10/10] target-mips: Enable KVM support in build system

2013-12-21 Thread Aurelien Jarno
On Mon, Dec 16, 2013 at 02:12:45PM +, James Hogan wrote: From: Sanjay Lal sanj...@kymasys.com Enable KVM support for MIPS in the build system. Signed-off-by: Sanjay Lal sanj...@kymasys.com Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net

Re: [PATCH v2 01/10] hw/mips/cputimer: Don't start periodic timer in KVM mode

2013-12-21 Thread Aurelien Jarno
...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net --- Changes in v2: - Expand commit message - Rebase on v1.7.0 - Wrap comment --- hw/mips/cputimer.c | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/hw/mips/cputimer.c b/hw/mips/cputimer.c index c8b4b00

Re: [PATCH v2 09/10] hw/mips: malta: Add KVM support

2013-12-21 Thread Aurelien Jarno
...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net --- Changes in v2: - Removal of cps / GIC / SMP support - Minimal bootloader modified to execute safely from RAM - Remove Writing bootloader to final 1MB of RAM printf --- hw/mips/mips_malta.c | 85

Re: [PATCH v2 04/10] target-mips: get_physical_address: Add KVM awareness

2013-12-21 Thread Aurelien Jarno
access works. This is done by translating the address to a standard kseg0 or kseg2 address before doing the normal address translation. The real virtual address is still used for TLB lookups. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net --- target

Re: [PATCH v2 02/10] hw/mips: Add API to convert KVM guest KSEG0 - GPA

2013-12-21 Thread Aurelien Jarno
-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net --- Changes in v2: - Expand commit message - Remove unnecessary include --- hw/mips/addr.c| 10 ++ include/hw/mips/cpudevs.h | 4 2 files changed, 14 insertions(+) diff --git a/hw

Re: [PATCH v2 06/10] target-mips: Set target page size to 16K in KVM mode

2013-12-21 Thread Aurelien Jarno
increase the target page size to 16K when KVM is configured. Signed-off-by: Sanjay Lal sanj...@kymasys.com Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net --- Changes in v2: - Expand commit message --- target-mips/mips-defs.h | 5 + 1 file changed

Re: [PATCH v2 05/10] kvm: Set sigmask length to 16 for MIPS targets

2013-12-21 Thread Aurelien Jarno
)); +#ifdef TARGET_MIPS +/* MIPS has 128 signals */ +sigmask-len = 16; +#else sigmask-len = 8; +#endif memcpy(sigmask-sigset, sigset, sizeof(*sigset)); r = kvm_vcpu_ioctl(cpu, KVM_SET_SIGNAL_MASK, sigmask); g_free(sigmask); Reviewed-by: Aurelien Jarno aurel...@aurel32

Re: [PATCH v2 03/10] target-mips: get_physical_address: Add defines for segment bases

2013-12-21 Thread Aurelien Jarno
: Aurelien Jarno aurel...@aurel32.net --- target-mips/helper.c | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/target-mips/helper.c b/target-mips/helper.c index 33e0e88..2e96655 100644 --- a/target-mips/helper.c +++ b/target-mips/helper.c @@ -118,7 +118,13

Re: [PATCH v2 07/10] target-mips: kvm: Add main KVM support for MIPS

2013-12-21 Thread Aurelien Jarno
On Mon, Dec 16, 2013 at 02:12:42PM +, James Hogan wrote: From: Sanjay Lal sanj...@kymasys.com Implement the main KVM arch API for MIPS. Signed-off-by: Sanjay Lal sanj...@kymasys.com Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Gleb

Re: virtio-rng only returns zeros with CONFIG_HW_RANDOM=m

2013-02-27 Thread Aurelien Jarno
On Wed, Feb 27, 2013 at 10:43:37AM +1030, Rusty Russell wrote: Aurelien Jarno aurel...@aurel32.net writes: Hi, I have noticed that virtio-rng only returns zero for kernels = 2.6.33 built with CONFIG_HW_RANDOM=m. This is a bit much too predictable for a random generator ;-). Wow

Re: virtio-rng only returns zeros with CONFIG_HW_RANDOM=m

2013-02-27 Thread Aurelien Jarno
On Wed, Feb 27, 2013 at 11:56:55AM +1030, Rusty Russell wrote: Aurelien Jarno aurel...@aurel32.net writes: Hi, I have noticed that virtio-rng only returns zero for kernels = 2.6.33 built with CONFIG_HW_RANDOM=m. This is a bit much too predictable for a random generator

virtio-rng only returns zeros with CONFIG_HW_RANDOM=m

2013-02-24 Thread Aurelien Jarno
-rng passed to virtio functions, followed by a memcpy to get the data in the rng core buffer; - use a kmalloc buffer in rng_core instead of vmalloc one. What would be best way to fix that? Did I miss another way? Thanks, Aurelien -- Aurelien Jarno GPG: 1024D/F1BCDB73

Re: [Qemu-devel] [patch 2/6] Use machine options to emulate -no-kvm-irqchip

2012-10-03 Thread Aurelien Jarno
before this line! STEXI @end table As far as I understand, this option was not in QEMU, because this syntax is considered as deprecated. Can we also add an output a warning message in that case? -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net

Re: [Qemu-devel] [PATCH] kvm: Set default accelerator to kvm if the host supports it

2012-10-02 Thread Aurelien Jarno
access the /dev/kvm, nested virtualization, etc.), if QEMU fails to start (while previous versions were working), the user can conclude that QEMU is crap. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe

Re: [PATCH] kvm: Set default accelerator to kvm if the host supports it

2012-10-01 Thread Aurelien Jarno
of that). On the other hand, if the user explicitly enables KVM support with -enable-kvm or with accel=kvm, it should fail to start. In other words, a bit like the configure script options, by default we use auto-detection, but if an option is explicitly enabled, it fails if it can't be enabled. -- Aurelien Jarno

Re: [Qemu-devel] [PATCH 22/23] x86: Fix MCA broadcast parameters for TCG case

2011-02-08 Thread Aurelien Jarno
); } } } -- 1.7.2.3 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line unsubscribe kvm in the body of a message to majord

Re: [Qemu-devel] KVM call minutes for Feb 8

2011-02-08 Thread Aurelien Jarno
, but those are already using qdev. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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

Re: [Qemu-devel] Re: KVM call agenda for Jan 25

2011-01-25 Thread Aurelien Jarno
planning our next release in advance, here's a simple example: http://wiki.qemu.org/Planning/0.15-example What about planning the 0.14 release first? From what I see on the mailing list, we are more in a development phase than in a bug fix phase before a release. -- Aurelien Jarno

Re: [Qemu-devel] Re: KVM call agenda for Jan 25

2011-01-25 Thread Aurelien Jarno
On Tue, Jan 25, 2011 at 03:42:04PM +0100, Kevin Wolf wrote: Am 25.01.2011 15:11, schrieb Aurelien Jarno: Luiz Capitulino a écrit : On Mon, 24 Jan 2011 16:06:34 -0600 Anthony Liguori anth...@codemonkey.ws wrote: On 01/24/2011 07:25 AM, Chris Wright wrote: Please send in any agenda

Re: [Qemu-devel] KVM call minutes for July 20

2010-07-20 Thread Aurelien Jarno
. There are currently 44 patches waiting in the stable tree, so I guess we can go for a release. I plan to do that later this week if nobody opposes. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send

Re: [Qemu-devel] Re: KVM Call agenda for July 13th

2010-07-15 Thread Aurelien Jarno
them to the upstream qemu stable tree. I have offered to take care of this, but so far I do not have commit access. You don't necessarily need commit access for that. Just create your own tree with backported patches, and then send a stable pull request to the mailing list. -- Aurelien

Re: [Qemu-devel] Re: KVM Call agenda for July 13th

2010-07-13 Thread Aurelien Jarno
a call for patches for this release. One week should be enough, so that we can have the release at the end of next week (a few technical days are needed in addition). -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net

Re: [Qemu-devel] [PATCH] Add QMP/qmp-commands.txt to .gitignore

2010-07-01 Thread Aurelien Jarno
/.gitignore index ce66ed5..a32b7c4 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ qemu-img-cmds.texi qemu-img-cmds.h qemu-io qemu-monitor.texi +QMP/qmp-commands.txt .gdbinit *.a *.aux -- 1.7.0 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel

Re: [Qemu-devel] [PATCH] QEMU: Update .gitignore

2010-06-30 Thread Aurelien Jarno
.gdbinit *.a *.aux @@ -50,4 +53,5 @@ pc-bios/optionrom/linuxboot.bin pc-bios/optionrom/multiboot.bin pc-bios/optionrom/multiboot.raw pc-bios/optionrom/extboot.bin +pc-bios/optionrom/vapic.bin .stgit-* -- 1.7.0 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel

Re: [Qemu-devel] Re: KVM call minutes for June 15

2010-06-16 Thread Aurelien Jarno
hit a public mailing list before. This is indeed something very useful that should be encouraged. Depending on the patch and the persons that have reviewed/acked it, I commit some patches only after a very quick look. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel

Re: [Qemu-devel] [RFC] Bug Day - June 1st, 2010

2010-05-18 Thread Aurelien Jarno
it be possible to hold this on a week-end, I personally won't be able to attend such thing on a day week. Or maybe holding that on two days: friday and saturday so that people can participate at least one of the two days, depending if they do that from work or from home. -- Aurelien Jarno

Re: [Qemu-devel] Re: KVM call agenda for Apr 27

2010-04-26 Thread Aurelien Jarno
release last week, maybe he's interested in helping with the stables (or not :)). I didn't find the time to do the stable release, but we should be very close now. I am interested to have stable releases, but if someone else want to work on that, I am fine. -- Aurelien Jarno

Re: [Qemu-devel] [PATCH] qemu: jaso-parser: Output the content of invalid keyword

2010-03-27 Thread Aurelien Jarno
error: %s\n, msg); +va_list ap; +va_start(ap, msg); +fprintf(stderr, parse error: ); +vfprintf(stderr, msg, ap); +fprintf(stderr, \n); +va_end(ap); } /** -- 1.6.3.3 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net

Re: [PATCH] qemu-kvm: jaso-parser: Output the content of invalid keyword

2010-03-24 Thread Aurelien Jarno
char *msg, ...) { -fprintf(stderr, parse error: %s\n, msg); +va_list ap; +va_start(ap, msg); +fprintf(stderr, parse error:); +vfprintf(stderr, msg, ap); +fprintf(stderr, \n); } /** -- 1.6.3.3 -- Aurelien Jarno GPG: 1024D

Re: [Qemu-devel] [PATCH] Fix segfault with ram_size 4095M without kvm

2010-03-06 Thread Aurelien Jarno
On Thu, Mar 04, 2010 at 03:34:34PM -0600, Ryan Harper wrote: * Aurelien Jarno aurel...@aurel32.net [2010-03-04 15:27]: On Tue, Feb 23, 2010 at 06:02:15PM +0100, Aurelien Jarno wrote: Ryan Harper a écrit : Currently, x86_64-softmmu qemu segfaults when trying to use 4095M memsize

Re: [Qemu-devel] Re: pc-bios/bios.bin - where it comes from?

2010-03-05 Thread Aurelien Jarno
. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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

Re: [Qemu-devel] [PATCH] Fix segfault with ram_size 4095M without kvm

2010-03-04 Thread Aurelien Jarno
On Tue, Feb 23, 2010 at 06:02:15PM +0100, Aurelien Jarno wrote: Ryan Harper a écrit : Currently, x86_64-softmmu qemu segfaults when trying to use 4095M memsize. This patch adds a simple check and error message (much like the 2047 limit on 32-bit hosts) on ram_size in the control path

Re: [Qemu-devel] [PATCH] Fix segfault with ram_size 4095M without kvm

2010-02-23 Thread Aurelien Jarno
); +exit(1); +} } if (qemu_init_main_loop()) { -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line unsubscribe kvm in the body of a message

Re: [Qemu-devel] [PATCH] Fix segfault with ram_size 4095M without kvm

2010-02-23 Thread Aurelien Jarno
On Tue, Feb 23, 2010 at 03:07:20PM -0600, Anthony Liguori wrote: On 02/23/2010 02:30 PM, Alexander Graf wrote: On 23.02.2010, at 18:02, Aurelien Jarno wrote: Ryan Harper a écrit : Currently, x86_64-softmmu qemu segfaults when trying to use 4095M memsize. This patch adds a simple check

Re: [Qemu-devel] [trivial patch] Add missing newline at the end of options list

2009-12-28 Thread Aurelien Jarno
) -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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

[PATCH] KVM: fix LAPIC timer period overflow

2009-09-25 Thread Aurelien Jarno
Don't overflow when computing the 64-bit period from 32-bit registers. Fixes sourceforge bug #2826486. Signed-off-by: Aurelien Jarno aurel...@aurel32.net --- arch/x86/kvm/lapic.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm

Re: cr3 OOS optimisation breaks 32-bit GNU/kFreeBSD guest

2009-04-04 Thread Aurelien Jarno
-by: Marcelo Tosatti mtosa...@redhat.com I have tried this patch, and unfortunately it does not solve the original problem, while the previous one did. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from

Re: cr3 OOS optimisation breaks 32-bit GNU/kFreeBSD guest

2009-03-24 Thread Aurelien Jarno
KVM_USERSPACE_IRQ_SOURCE_ID 0 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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

Re: kvm-84 screen corruption

2009-03-02 Thread Aurelien Jarno
this in kvm (1:84+dfsg-0ubuntu5) jaunty by applying: * http://svn.savannah.gnu.org/viewvc/trunk/exec.c?r1=6601r2=6628pathrev=6628root=qemuview=patch This is exactly the patch I told you to try, so it is already in the git tree. Aurelien -- Aurelien Jarno GPG: 1024D/F1BCDB73

Re: [PATCH v4 0/5] powerpc/kvm: Add MPC8544DS board support

2009-03-02 Thread Aurelien Jarno
On Thu, Feb 26, 2009 at 06:35:40PM +0800, Liu Yu wrote: patch 1: enable mpic for E500 platform. patch 2: add E500 pci controller emulation. patch 3: add E500 irq support. patch 4: add MPC8544DS board support. patch 5: FDT of MPC8544DS Thanks, whole series applied. -- Aurelien Jarno

Re: [PATCH 1/5] kvm/powerpc: Enable MPIC for E500 platform.

2009-03-02 Thread Aurelien Jarno
committed another patch to fix that. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line unsubscribe kvm-ppc in the body of a message to majord...@vger.kernel.org More majordomo info

Re: kvm-84 screen corruption

2009-02-24 Thread Aurelien Jarno
? This is most probably fixed in git, commit 7def4ba752cf629043e884dac8541fa5114c4c91 -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' aure...@debian.org | aurel...@aurel32.net `-people.debian.org

Re: cr3 OOS optimisation breaks 32-bit GNU/kFreeBSD guest

2009-02-23 Thread Aurelien Jarno
On Sun, Feb 22, 2009 at 10:47:13PM -0300, Marcelo Tosatti wrote: On Mon, Feb 23, 2009 at 01:33:05AM +0100, Aurelien Jarno wrote: Hi, Since kvm-81, I have noticed that GNU/kFreeBSD 32-bit guest are crashing under high load (during a compilation for example) with the following error

cr3 OOS optimisation breaks 32-bit GNU/kFreeBSD guest

2009-02-22 Thread Aurelien Jarno
and a 2.6.28 64-bit kernel. Does anybody see any problem in this patch? How can I further debug the problem? Aurelien -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line

Re: [Qemu-devel] [PATCH 1/5] kvm/powerpc: Enable MPIC for E500 platform.

2009-02-19 Thread Aurelien Jarno
are simply passed by value, they don't need to be swapped. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line unsubscribe kvm-ppc in the body of a message to majord...@vger.kernel.org

Re: [Qemu-devel] [PATCH 2/6] kvm/powerpc: Add freescale pci controller's support

2009-01-24 Thread Aurelien Jarno
; +} -- 1.5.4 -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To unsubscribe from this list: send the line unsubscribe kvm-ppc in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [Qemu-devel] [PATCH 4/6] kvm/powerpc: extern one function for MPC85xx code use

2009-01-24 Thread Aurelien Jarno
@@ void kvmppc_init(void); void kvmppc_fdt_update(void *fdt); +int kvmppc_read_host_property(const char *node_path, const char *prop, + void *val, size_t len); #endif /* __KVM_PPC_H__ */ -- 1.5.4 -- Aurelien Jarno

Re: [Qemu-devel] [PATCH] hpet config mask fix

2009-01-16 Thread Aurelien Jarno
#define HPET_TN_INT_ROUTE_SHIFT 9 #define HPET_TN_INT_ROUTE_CAP_SHIFT 32 #define HPET_TN_CFG_BITS_READONLY_OR_RESERVED 0x80b1U -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' aure...@debian.org

Re: [Qemu-devel] [PATCH 3/9] powerpc/kvm: Enable mpic for E500 platform

2009-01-16 Thread Aurelien Jarno
, but there are different bugs/quirks to different implementations. So even if e500's MPIC isn't *exactly* the same as 970 chipsets' MPIC, if they're close enough that the code could be shared, it should be. -- Hollis Blanchard IBM Linux Technology Center -- .''`. Aurelien Jarno

Re: [Qemu-devel] KVM PowerPC support v3

2008-12-16 Thread Aurelien Jarno
On Mon, Dec 15, 2008 at 06:17:28PM -0600, Hollis Blanchard wrote: I've fixed the configure output in patch #1, and the comment in patch #4. Patch #2 was already acked. Thanks, all applied. I still have a few questions though, see the answer to individual patches. -- .''`. Aurelien

Re: [Qemu-devel] [PATCH 1/8] Move PPC4xx SDRAM controller emulation from ppc405_uc.c to ppc4xx_devs.c

2008-12-15 Thread Aurelien Jarno
, dcr_write_sdram); +ppc_dcr_register(env, SDRAM0_CFGDATA, + sdram, dcr_read_sdram, dcr_write_sdram); +if (do_init) +sdram_map_bcr(sdram); +} +} -- 1.5.6.5 -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73

Re: [Qemu-devel] [PATCH 3/8] Create a helper function to allow more flexible RAM allocation for PPC 4xx

2008-12-15 Thread Aurelien Jarno
) { +/* No need to use the remaining banks. */ +break; +} +} + +if (ram_size) +printf(Truncating memory to %d MiB to fit SDRAM controller limits.\n, + (int)(ram_end 20)); + +return ram_end; +} -- 1.5.6.5 -- .''`. Aurelien

Re: Is this a bug in qemu-img?

2008-11-30 Thread Aurelien Jarno
in QEMU SVN. It will be fixed in KVM as soon as the QEMU SVN is pulleD. -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org/~aurel32 | www.aurel32.net

Re: Out of sync shadow core breaks Hurd

2008-11-25 Thread Aurelien Jarno
On Thu, Nov 20, 2008 at 10:48:21AM +0100, Marcelo Tosatti wrote: Hi Aurelien, Hi, On Wed, Nov 12, 2008 at 08:00:37PM +0100, Aurelien Jarno wrote: Hi, Starting with kvm-76 (and including kvm-79), Hurd does not boot anymore under KVM. The ext2fs translator issues a strange error message

Out of sync shadow core breaks Hurd

2008-11-12 Thread Aurelien Jarno
] http://ftp.debian-ports.org/debian-cd/hurd-i386/current/debian-hurd-k16-qemu.img.tar.gz -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org

Re: [Qemu-devel] [PATCH 1/3] qemu: ppc: define maximum SMP limit as 1 for Bamboo

2008-10-31 Thread Aurelien Jarno
, + .init = bamboo_init, + .max_cpus = 1, }; -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org/~aurel32 | www.aurel32.net

Re: [Qemu-devel] [PATCH] uhci: improved TD matching, working ISOC transfers

2008-08-22 Thread Aurelien Jarno
++; } -return NULL; + +if (count 64) + fprintf(stderr, uhci: warning lots of async transactions\n); + +return match; } static void uhci_attach(USBPort *port1, USBDevice *dev); -- 1.5.5.1 -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian

Re: [Qemu-devel] [PATCH] uhci: Fixed length handling for SETUP and OUT tokens

2008-08-22 Thread Aurelien Jarno
: -ret = uhci_complete_td(s, td, async, int_mask); +len = uhci_complete_td(s, td, async, int_mask); uhci_async_free(s, async); -return ret; +return len; } static void uhci_async_complete(USBPacket *packet, void *opaque) -- 1.5.5.1 -- .''`. Aurelien Jarno