All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-16 15:54 ` Jérémy Fanguède
  0 siblings, 0 replies; 10+ messages in thread
From: Jérémy Fanguède @ 2015-04-16 15:54 UTC (permalink / raw)
  To: QEMU Developers; +Cc: VirtualOpenSystems Technical Team, kvmarm

Hello,

Attaching PCI devices to the virt model works fine with TCG, but
fails once KVM is enabled. For instance, with this command line:

./qemu-system-arm -m 512 -machine type=virt \
    -enable-kvm -cpu host \
    -nographic \
    -kernel zImage \
    -drive if=none,file=ubuntu.img,id=fs,format=raw \
    -device virtio-blk-device,drive=fs \
    -netdev type=user,id=net0 -device e1000,netdev=net0 \
    -drive if=scsi,file=disk.img,format=raw \
    -device lsi53c895a \
    -usb -device usb-ehci,id=ehci \
    -device usb-tablet,bus=ehci.0 \
    -device usb-host,hostbus=3,hostport=1,bus=ehci.0  \
    -append "console=ttyAMA0 root=/dev/vda rw"

The e1000 once up is failing, when issuing a ping command, with the
following kernel messages:
[...]
e1000 0000:00:02.0 eth0: Detected Tx Unit Hang
  Tx Queue             <0>
  TDH                  <3>
  TDT                  <3>
  next_to_use          <3>
  next_to_clean        <2>
buffer_info[next_to_clean]
  time_stamp           <ffff94db>
  next_to_watch        <2>
  jiffies              <ffff9568>
  next_to_watch.status <0>
[...]

The guest kernel driver of the lsi device fails to enable it correctly
with a cache error:
[...]
sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
CACHE TEST FAILED: chip wrote 2, host read 1.
sym0: CACHE INCORRECTLY CONFIGURED.
sym0: giving up ...
[...]

And finally the USB controller fails to assign addresses to the devices
(emulated or host passthrough):
[...]
usb 1-1: new high-speed USB device number 2 using ehci-pci
usb 1-1: device not accepting address 2, error -110
usb 1-1: new high-speed USB device number 3 using ehci-pci
usb 1-1: device not accepting address 3, error -110
[...]

Tested with last QEMU version (v2.3.0-rc3), Linux kernel v4.0 (for both
guest and host) on Samsung Chromebook, Vexpress TC2 and OMAP5-UEVM.


After investigation, it turns out that some memory writes performed by
qemu emulated devices are not seen by the guest kernel, because the
cache and the system memory are inconsistent and the cache is never
flushed.

I managed to solve these issues by flushing the cache in the host
kernel each time we enter into the guest, only if there is a mmio
write (see below), but maybe this is not an acceptable/efficient
solution.

Any suggestions/advice to tackle this problem?


diff --git a/arch/arm/kvm/mmio.c b/arch/arm/kvm/mmio.c
index 5d3bfc0..4c51099 100644
--- a/arch/arm/kvm/mmio.c
+++ b/arch/arm/kvm/mmio.c
@@ -20,6 +20,7 @@
 #include <asm/kvm_mmio.h>
 #include <asm/kvm_emulate.h>
 #include <trace/events/kvm.h>
+#include <asm/cacheflush.h>

 #include "trace.h"

@@ -116,6 +117,8 @@ int kvm_handle_mmio_return(struct kvm_vcpu *vcpu,
struct kvm_run *run)
                               data);
                data = vcpu_data_host_to_guest(vcpu, data, len);
                *vcpu_reg(vcpu, vcpu->arch.mmio_decode.rt) = data;
+       } else {
+               flush_cache_all();
        }

        return 0;


Regards,
Jérémy

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-16 15:54 ` Jérémy Fanguède
  0 siblings, 0 replies; 10+ messages in thread
From: Jérémy Fanguède @ 2015-04-16 15:54 UTC (permalink / raw)
  To: QEMU Developers; +Cc: VirtualOpenSystems Technical Team, kvmarm

Hello,

Attaching PCI devices to the virt model works fine with TCG, but
fails once KVM is enabled. For instance, with this command line:

./qemu-system-arm -m 512 -machine type=virt \
    -enable-kvm -cpu host \
    -nographic \
    -kernel zImage \
    -drive if=none,file=ubuntu.img,id=fs,format=raw \
    -device virtio-blk-device,drive=fs \
    -netdev type=user,id=net0 -device e1000,netdev=net0 \
    -drive if=scsi,file=disk.img,format=raw \
    -device lsi53c895a \
    -usb -device usb-ehci,id=ehci \
    -device usb-tablet,bus=ehci.0 \
    -device usb-host,hostbus=3,hostport=1,bus=ehci.0  \
    -append "console=ttyAMA0 root=/dev/vda rw"

The e1000 once up is failing, when issuing a ping command, with the
following kernel messages:
[...]
e1000 0000:00:02.0 eth0: Detected Tx Unit Hang
  Tx Queue             <0>
  TDH                  <3>
  TDT                  <3>
  next_to_use          <3>
  next_to_clean        <2>
buffer_info[next_to_clean]
  time_stamp           <ffff94db>
  next_to_watch        <2>
  jiffies              <ffff9568>
  next_to_watch.status <0>
[...]

The guest kernel driver of the lsi device fails to enable it correctly
with a cache error:
[...]
sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
CACHE TEST FAILED: chip wrote 2, host read 1.
sym0: CACHE INCORRECTLY CONFIGURED.
sym0: giving up ...
[...]

And finally the USB controller fails to assign addresses to the devices
(emulated or host passthrough):
[...]
usb 1-1: new high-speed USB device number 2 using ehci-pci
usb 1-1: device not accepting address 2, error -110
usb 1-1: new high-speed USB device number 3 using ehci-pci
usb 1-1: device not accepting address 3, error -110
[...]

Tested with last QEMU version (v2.3.0-rc3), Linux kernel v4.0 (for both
guest and host) on Samsung Chromebook, Vexpress TC2 and OMAP5-UEVM.


After investigation, it turns out that some memory writes performed by
qemu emulated devices are not seen by the guest kernel, because the
cache and the system memory are inconsistent and the cache is never
flushed.

I managed to solve these issues by flushing the cache in the host
kernel each time we enter into the guest, only if there is a mmio
write (see below), but maybe this is not an acceptable/efficient
solution.

Any suggestions/advice to tackle this problem?


diff --git a/arch/arm/kvm/mmio.c b/arch/arm/kvm/mmio.c
index 5d3bfc0..4c51099 100644
--- a/arch/arm/kvm/mmio.c
+++ b/arch/arm/kvm/mmio.c
@@ -20,6 +20,7 @@
 #include <asm/kvm_mmio.h>
 #include <asm/kvm_emulate.h>
 #include <trace/events/kvm.h>
+#include <asm/cacheflush.h>

 #include "trace.h"

@@ -116,6 +117,8 @@ int kvm_handle_mmio_return(struct kvm_vcpu *vcpu,
struct kvm_run *run)
                               data);
                data = vcpu_data_host_to_guest(vcpu, data, len);
                *vcpu_reg(vcpu, vcpu->arch.mmio_decode.rt) = data;
+       } else {
+               flush_cache_all();
        }

        return 0;


Regards,
Jérémy
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue
  2015-04-16 15:54 ` Jérémy Fanguède
@ 2015-04-16 16:02   ` Paolo Bonzini
  -1 siblings, 0 replies; 10+ messages in thread
From: Paolo Bonzini @ 2015-04-16 16:02 UTC (permalink / raw)
  To: Jérémy Fanguède, QEMU Developers
  Cc: VirtualOpenSystems Technical Team, kvmarm



On 16/04/2015 17:54, Jérémy Fanguède wrote:
> The guest kernel driver of the lsi device fails to enable it correctly
> with a cache error:
> [...]
> sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> CACHE TEST FAILED: chip wrote 2, host read 1.
> sym0: CACHE INCORRECTLY CONFIGURED.
> sym0: giving up ...
> [...]

Note that this is just a failure in the driver self-test.  It has
nothing to do with the processor cache (though there are other problems
with PCI and the processor cache in KVM mode).

Do not use this QEMU device.  The emulation is incomplete and it's slow.
 Use virtio-scsi or megasas instead.  Still, I'm not sure that would
work with KVM; as far as I know, most work on the ARM PCI host bridge
was done using UEFI firmware.

Paolo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-16 16:02   ` Paolo Bonzini
  0 siblings, 0 replies; 10+ messages in thread
From: Paolo Bonzini @ 2015-04-16 16:02 UTC (permalink / raw)
  To: Jérémy Fanguède, QEMU Developers
  Cc: VirtualOpenSystems Technical Team, kvmarm



On 16/04/2015 17:54, Jérémy Fanguède wrote:
> The guest kernel driver of the lsi device fails to enable it correctly
> with a cache error:
> [...]
> sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> CACHE TEST FAILED: chip wrote 2, host read 1.
> sym0: CACHE INCORRECTLY CONFIGURED.
> sym0: giving up ...
> [...]

Note that this is just a failure in the driver self-test.  It has
nothing to do with the processor cache (though there are other problems
with PCI and the processor cache in KVM mode).

Do not use this QEMU device.  The emulation is incomplete and it's slow.
 Use virtio-scsi or megasas instead.  Still, I'm not sure that would
work with KVM; as far as I know, most work on the ARM PCI host bridge
was done using UEFI firmware.

Paolo
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue
  2015-04-16 16:02   ` Paolo Bonzini
@ 2015-04-17  9:29     ` Christoffer Dall
  -1 siblings, 0 replies; 10+ messages in thread
From: Christoffer Dall @ 2015-04-17  9:29 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Jérémy Fanguède,
	VirtualOpenSystems Technical Team, QEMU Developers, kvmarm

On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
> 
> 
> On 16/04/2015 17:54, Jérémy Fanguède wrote:
> > The guest kernel driver of the lsi device fails to enable it correctly
> > with a cache error:
> > [...]
> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> > CACHE TEST FAILED: chip wrote 2, host read 1.
> > sym0: CACHE INCORRECTLY CONFIGURED.
> > sym0: giving up ...
> > [...]
> 
> Note that this is just a failure in the driver self-test.  It has
> nothing to do with the processor cache (though there are other problems
> with PCI and the processor cache in KVM mode).
> 
> Do not use this QEMU device.  The emulation is incomplete and it's slow.
>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
> work with KVM; as far as I know, most work on the ARM PCI host bridge
> was done using UEFI firmware.
> 
I've been running a number of tests lately using virtio-net-pci and
virtio-blk-pci on XGene at it works like a charm.

-Christoffer

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-17  9:29     ` Christoffer Dall
  0 siblings, 0 replies; 10+ messages in thread
From: Christoffer Dall @ 2015-04-17  9:29 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: VirtualOpenSystems Technical Team, QEMU Developers, kvmarm

On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
> 
> 
> On 16/04/2015 17:54, Jérémy Fanguède wrote:
> > The guest kernel driver of the lsi device fails to enable it correctly
> > with a cache error:
> > [...]
> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> > CACHE TEST FAILED: chip wrote 2, host read 1.
> > sym0: CACHE INCORRECTLY CONFIGURED.
> > sym0: giving up ...
> > [...]
> 
> Note that this is just a failure in the driver self-test.  It has
> nothing to do with the processor cache (though there are other problems
> with PCI and the processor cache in KVM mode).
> 
> Do not use this QEMU device.  The emulation is incomplete and it's slow.
>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
> work with KVM; as far as I know, most work on the ARM PCI host bridge
> was done using UEFI firmware.
> 
I've been running a number of tests lately using virtio-net-pci and
virtio-blk-pci on XGene at it works like a charm.

-Christoffer

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue
  2015-04-17  9:29     ` Christoffer Dall
@ 2015-04-17 13:48       ` Jérémy Fanguède
  -1 siblings, 0 replies; 10+ messages in thread
From: Jérémy Fanguède @ 2015-04-17 13:48 UTC (permalink / raw)
  To: Christoffer Dall
  Cc: Paolo Bonzini, VirtualOpenSystems Technical Team,
	QEMU Developers, kvmarm

On Fri, Apr 17, 2015 at 11:29 AM, Christoffer Dall
<christoffer.dall@linaro.org> wrote:
> On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
>>
>>
>> On 16/04/2015 17:54, Jérémy Fangučde wrote:
>> > The guest kernel driver of the lsi device fails to enable it correctly
>> > with a cache error:
>> > [...]
>> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
>> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
>> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
>> > CACHE TEST FAILED: chip wrote 2, host read 1.
>> > sym0: CACHE INCORRECTLY CONFIGURED.
>> > sym0: giving up ...
>> > [...]
>>
>> Note that this is just a failure in the driver self-test.  It has
>> nothing to do with the processor cache (though there are other problems
>> with PCI and the processor cache in KVM mode).
>>
>> Do not use this QEMU device.  The emulation is incomplete and it's slow.
>>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
>> work with KVM; as far as I know, most work on the ARM PCI host bridge
>> was done using UEFI firmware.
>>
> I've been running a number of tests lately using virtio-net-pci and
> virtio-blk-pci on XGene at it works like a charm.

It should be noted that all these devices work fine on x86 with KVM
enabled.

Of course, not all PCI devices are affected, e.g. virtio-* devices
work fine for me also. However, should this failure be considered
normal with KVM on ARM, while it works on x86?

For instance, let's take the use case where there is no virtio
alternative: USB devices (passthrough or emulated) attached to a PCI
USB controller, how is this supposed to work with KVM on ARM?
The only way to make usb-ehci working that I am aware, is
with this cache hack.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-17 13:48       ` Jérémy Fanguède
  0 siblings, 0 replies; 10+ messages in thread
From: Jérémy Fanguède @ 2015-04-17 13:48 UTC (permalink / raw)
  To: Christoffer Dall
  Cc: Paolo Bonzini, VirtualOpenSystems Technical Team,
	QEMU Developers, kvmarm

On Fri, Apr 17, 2015 at 11:29 AM, Christoffer Dall
<christoffer.dall@linaro.org> wrote:
> On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
>>
>>
>> On 16/04/2015 17:54, Jérémy Fangučde wrote:
>> > The guest kernel driver of the lsi device fails to enable it correctly
>> > with a cache error:
>> > [...]
>> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
>> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
>> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
>> > CACHE TEST FAILED: chip wrote 2, host read 1.
>> > sym0: CACHE INCORRECTLY CONFIGURED.
>> > sym0: giving up ...
>> > [...]
>>
>> Note that this is just a failure in the driver self-test.  It has
>> nothing to do with the processor cache (though there are other problems
>> with PCI and the processor cache in KVM mode).
>>
>> Do not use this QEMU device.  The emulation is incomplete and it's slow.
>>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
>> work with KVM; as far as I know, most work on the ARM PCI host bridge
>> was done using UEFI firmware.
>>
> I've been running a number of tests lately using virtio-net-pci and
> virtio-blk-pci on XGene at it works like a charm.

It should be noted that all these devices work fine on x86 with KVM
enabled.

Of course, not all PCI devices are affected, e.g. virtio-* devices
work fine for me also. However, should this failure be considered
normal with KVM on ARM, while it works on x86?

For instance, let's take the use case where there is no virtio
alternative: USB devices (passthrough or emulated) attached to a PCI
USB controller, how is this supposed to work with KVM on ARM?
The only way to make usb-ehci working that I am aware, is
with this cache hack.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue
  2015-04-17 13:48       ` Jérémy Fanguède
@ 2015-04-17 14:06         ` Christoffer Dall
  -1 siblings, 0 replies; 10+ messages in thread
From: Christoffer Dall @ 2015-04-17 14:06 UTC (permalink / raw)
  To: Jérémy Fanguède
  Cc: Paolo Bonzini, VirtualOpenSystems Technical Team,
	QEMU Developers, kvmarm

On Fri, Apr 17, 2015 at 03:48:35PM +0200, Jérémy Fanguède wrote:
> On Fri, Apr 17, 2015 at 11:29 AM, Christoffer Dall
> <christoffer.dall@linaro.org> wrote:
> > On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
> >>
> >>
> >> On 16/04/2015 17:54, Jérémy Fangučde wrote:
> >> > The guest kernel driver of the lsi device fails to enable it correctly
> >> > with a cache error:
> >> > [...]
> >> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> >> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> >> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> >> > CACHE TEST FAILED: chip wrote 2, host read 1.
> >> > sym0: CACHE INCORRECTLY CONFIGURED.
> >> > sym0: giving up ...
> >> > [...]
> >>
> >> Note that this is just a failure in the driver self-test.  It has
> >> nothing to do with the processor cache (though there are other problems
> >> with PCI and the processor cache in KVM mode).
> >>
> >> Do not use this QEMU device.  The emulation is incomplete and it's slow.
> >>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
> >> work with KVM; as far as I know, most work on the ARM PCI host bridge
> >> was done using UEFI firmware.
> >>
> > I've been running a number of tests lately using virtio-net-pci and
> > virtio-blk-pci on XGene at it works like a charm.
> 
> It should be noted that all these devices work fine on x86 with KVM
> enabled.
> 
> Of course, not all PCI devices are affected, e.g. virtio-* devices
> work fine for me also. However, should this failure be considered
> normal with KVM on ARM, while it works on x86?
> 
> For instance, let's take the use case where there is no virtio
> alternative: USB devices (passthrough or emulated) attached to a PCI
> USB controller, how is this supposed to work with KVM on ARM?
> The only way to make usb-ehci working that I am aware, is
> with this cache hack.

As Paolo said, we know there are cache issues on KVM/ARM and we are
working through.  Patches are as always welcome ;)

-Christoffer

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ARM: PCI devices emulation broken with KVM due to cache issue
@ 2015-04-17 14:06         ` Christoffer Dall
  0 siblings, 0 replies; 10+ messages in thread
From: Christoffer Dall @ 2015-04-17 14:06 UTC (permalink / raw)
  To: Jérémy Fanguède
  Cc: Paolo Bonzini, VirtualOpenSystems Technical Team,
	QEMU Developers, kvmarm

On Fri, Apr 17, 2015 at 03:48:35PM +0200, Jérémy Fanguède wrote:
> On Fri, Apr 17, 2015 at 11:29 AM, Christoffer Dall
> <christoffer.dall@linaro.org> wrote:
> > On Thu, Apr 16, 2015 at 06:02:27PM +0200, Paolo Bonzini wrote:
> >>
> >>
> >> On 16/04/2015 17:54, Jérémy Fangučde wrote:
> >> > The guest kernel driver of the lsi device fails to enable it correctly
> >> > with a cache error:
> >> > [...]
> >> > sym53c8xx 0000:00:01.0: enabling device (0100 -> 0103)
> >> > sym0: <895a> rev 0x0 at pci 0000:00:01.0 irq 54
> >> > sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
> >> > CACHE TEST FAILED: chip wrote 2, host read 1.
> >> > sym0: CACHE INCORRECTLY CONFIGURED.
> >> > sym0: giving up ...
> >> > [...]
> >>
> >> Note that this is just a failure in the driver self-test.  It has
> >> nothing to do with the processor cache (though there are other problems
> >> with PCI and the processor cache in KVM mode).
> >>
> >> Do not use this QEMU device.  The emulation is incomplete and it's slow.
> >>  Use virtio-scsi or megasas instead.  Still, I'm not sure that would
> >> work with KVM; as far as I know, most work on the ARM PCI host bridge
> >> was done using UEFI firmware.
> >>
> > I've been running a number of tests lately using virtio-net-pci and
> > virtio-blk-pci on XGene at it works like a charm.
> 
> It should be noted that all these devices work fine on x86 with KVM
> enabled.
> 
> Of course, not all PCI devices are affected, e.g. virtio-* devices
> work fine for me also. However, should this failure be considered
> normal with KVM on ARM, while it works on x86?
> 
> For instance, let's take the use case where there is no virtio
> alternative: USB devices (passthrough or emulated) attached to a PCI
> USB controller, how is this supposed to work with KVM on ARM?
> The only way to make usb-ehci working that I am aware, is
> with this cache hack.

As Paolo said, we know there are cache issues on KVM/ARM and we are
working through.  Patches are as always welcome ;)

-Christoffer
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-04-17 14:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-16 15:54 [Qemu-devel] ARM: PCI devices emulation broken with KVM due to cache issue Jérémy Fanguède
2015-04-16 15:54 ` Jérémy Fanguède
2015-04-16 16:02 ` [Qemu-devel] " Paolo Bonzini
2015-04-16 16:02   ` Paolo Bonzini
2015-04-17  9:29   ` [Qemu-devel] " Christoffer Dall
2015-04-17  9:29     ` Christoffer Dall
2015-04-17 13:48     ` [Qemu-devel] " Jérémy Fanguède
2015-04-17 13:48       ` Jérémy Fanguède
2015-04-17 14:06       ` [Qemu-devel] " Christoffer Dall
2015-04-17 14:06         ` Christoffer Dall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.