All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qemu/virtio: make wmb compiler barrier + comments
@ 2009-10-26 13:17 Michael S. Tsirkin
  2009-11-11  1:34 ` Paul Brook
  0 siblings, 1 reply; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-10-26 13:17 UTC (permalink / raw)
  To: qemu-devel, anthony

wmb must be at least a compiler barrier, even without SMP.
Further, we likely need some rmb()/mb() as well:
I have not audited the code but lguest has mb(),
add a comment for now.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/hw/virtio.c b/hw/virtio.c
index 337ff27..1f92171 100644
--- a/hw/virtio.c
+++ b/hw/virtio.c
@@ -23,8 +23,11 @@
 /* QEMU doesn't strictly need write barriers since everything runs in
  * lock-step.  We'll leave the calls to wmb() in though to make it obvious for
  * KVM or if kqemu gets SMP support.
+ * In any case, we must prevent the compiler from reordering the code.
+ * TODO: we likely need some rmb()/mb() as well.
  */
-#define wmb() do { } while (0)
+
+#define wmb() __asm__ __volatile__("": : :"memory")
 
 typedef struct VRingDesc
 {
-- 
1.6.5.rc2

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

* Re: [Qemu-devel] [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-10-26 13:17 [Qemu-devel] [PATCH] qemu/virtio: make wmb compiler barrier + comments Michael S. Tsirkin
@ 2009-11-11  1:34 ` Paul Brook
  2009-11-11  9:37   ` [Qemu-devel] " Michael S. Tsirkin
  0 siblings, 1 reply; 17+ messages in thread
From: Paul Brook @ 2009-11-11  1:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael S. Tsirkin

On Monday 26 October 2009, Michael S. Tsirkin wrote:
> wmb must be at least a compiler barrier, even without SMP.

Why?

Paul

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11  1:34 ` Paul Brook
@ 2009-11-11  9:37   ` Michael S. Tsirkin
  2009-11-11 13:01     ` Paul Brook
  0 siblings, 1 reply; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11  9:37 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Wed, Nov 11, 2009 at 01:34:12AM +0000, Paul Brook wrote:
> On Monday 26 October 2009, Michael S. Tsirkin wrote:
> > wmb must be at least a compiler barrier, even without SMP.
> 
> Why?

Because virtio code might run on a separate thread from guest.
If compiler reorders writes, guest might see inconsistent data.

-- 
MST

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11  9:37   ` [Qemu-devel] " Michael S. Tsirkin
@ 2009-11-11 13:01     ` Paul Brook
  2009-11-11 13:12       ` Michael S. Tsirkin
  2009-11-11 13:15       ` Michael S. Tsirkin
  0 siblings, 2 replies; 17+ messages in thread
From: Paul Brook @ 2009-11-11 13:01 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> On Wed, Nov 11, 2009 at 01:34:12AM +0000, Paul Brook wrote:
> > On Monday 26 October 2009, Michael S. Tsirkin wrote:
> > > wmb must be at least a compiler barrier, even without SMP.
> >
> > Why?
> 
> Because virtio code might run on a separate thread from guest.
> If compiler reorders writes, guest might see inconsistent data.

If you've got threads running in parallel (which may be running on separate 
CPUs) then you need an actual memory barrier to prevent the hardware 
reordering things behind your back.

If you've already used locking to avoid simultaneous execution then the 
locking routines already include memory barriers.

A "compiler memory barrier" provides absolutely no guarantees in a 
multithreaded environment. They are sometimes useful in a single threaded 
interruptable system (i.e. UNIX signals), but that's definitely not the case 
here.

Paul

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 13:01     ` Paul Brook
@ 2009-11-11 13:12       ` Michael S. Tsirkin
  2009-11-11 13:45         ` Paul Brook
  2009-11-11 13:15       ` Michael S. Tsirkin
  1 sibling, 1 reply; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 13:12 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Wed, Nov 11, 2009 at 01:01:03PM +0000, Paul Brook wrote:
> On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> > On Wed, Nov 11, 2009 at 01:34:12AM +0000, Paul Brook wrote:
> > > On Monday 26 October 2009, Michael S. Tsirkin wrote:
> > > > wmb must be at least a compiler barrier, even without SMP.
> > >
> > > Why?
> > 
> > Because virtio code might run on a separate thread from guest.
> > If compiler reorders writes, guest might see inconsistent data.
> 
> If you've got threads running in parallel (which may be running on separate 
> CPUs)

Yes, but you asked what happens without SMP (single CPU).

> then you need an actual memory barrier to prevent the hardware 
> reordering things behind your back.
> 
> If you've already used locking to avoid simultaneous execution then the 
> locking routines already include memory barriers.

You can not share a lock with guest.

> A "compiler memory barrier" provides absolutely no guarantees in a 
> multithreaded environment. They are sometimes useful in a single threaded 
> interruptable system (i.e. UNIX signals), but that's definitely not the case 
> here.
> 
> Paul

"absolutely no guarantees" is surely wrong.  On intel CPUs, regular
memory writes are never re-ordered by the CPU.  Only compiler can
reorder such writes.  So yes, on this platform a "compiler barrier" does
provide necessary and sufficient guarantees agains write reordering in a
multithreaded environment, both with and without SMP.

-- 
MST

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 13:01     ` Paul Brook
  2009-11-11 13:12       ` Michael S. Tsirkin
@ 2009-11-11 13:15       ` Michael S. Tsirkin
  1 sibling, 0 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 13:15 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Wed, Nov 11, 2009 at 01:01:03PM +0000, Paul Brook wrote:
> A "compiler memory barrier" provides absolutely no guarantees in a 
> multithreaded environment.

Claims including words "absolutely no" have absolutely no
chance to be correct.

-- 
MST

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 13:12       ` Michael S. Tsirkin
@ 2009-11-11 13:45         ` Paul Brook
  2009-11-11 14:08           ` Michael S. Tsirkin
  0 siblings, 1 reply; 17+ messages in thread
From: Paul Brook @ 2009-11-11 13:45 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

> > > > > wmb must be at least a compiler barrier, even without SMP.
> > > >
> > > > Why?
> > >
> > > Because virtio code might run on a separate thread from guest.
> > > If compiler reorders writes, guest might see inconsistent data.
> >
> > If you've got threads running in parallel (which may be running on
> > separate CPUs)
> 
> Yes, but you asked what happens without SMP (single CPU).

I assumed you meant guest SMP where guest code can run in parallel with host 
code.  My understanding is that qemu currently does not implement this, and 
everything always runs in lockstep.
 
> > then you need an actual memory barrier to prevent the hardware
> > reordering things behind your back.
> >
> > If you've already used locking to avoid simultaneous execution then the
> > locking routines already include memory barriers.
> 
> You can not share a lock with guest.

No, but you can prevent the guest code running at the same time as host code.

> > A "compiler memory barrier" provides absolutely no guarantees in a
> > multithreaded environment. They are sometimes useful in a single threaded
> > interruptable system (i.e. UNIX signals), but that's definitely not the
> > case here.
> 
> "absolutely no guarantees" is surely wrong.  On intel CPUs, regular
> memory writes are never re-ordered by the CPU.  

Technically true, however reads and writes may be reordered. 
If you don't need real barriers, then why does the kvm code have them? Also, 
there's no indication that your code is specific to Intel CPUs.

Paul

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 13:45         ` Paul Brook
@ 2009-11-11 14:08           ` Michael S. Tsirkin
  2009-11-11 14:16             ` Paul Brook
  2009-11-11 17:18             ` Scott Tsai
  0 siblings, 2 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 14:08 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> If you don't need real barriers, then why does the kvm code have them?

We need real barriers but AFAIK kvm does not have them :(
IOW: virtio is currently broken with kvm, and my patch did
not fix this. The comment that I added says as much.

-- 
MST

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 14:08           ` Michael S. Tsirkin
@ 2009-11-11 14:16             ` Paul Brook
  2009-11-11 14:34               ` Michael S. Tsirkin
  2009-11-11 17:18             ` Scott Tsai
  1 sibling, 1 reply; 17+ messages in thread
From: Paul Brook @ 2009-11-11 14:16 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> > If you don't need real barriers, then why does the kvm code have them?
> 
> We need real barriers but AFAIK kvm does not have them :(
> IOW: virtio is currently broken with kvm, and my patch did
> not fix this. The comment that I added says as much.

So your code just makes the bug harder to reproduce? Doesn't sound like a good 
thing to me.

Paul

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

* [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 14:16             ` Paul Brook
@ 2009-11-11 14:34               ` Michael S. Tsirkin
  2009-11-11 16:13                 ` Paul Brook
  0 siblings, 1 reply; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 14:34 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Wed, Nov 11, 2009 at 02:16:00PM +0000, Paul Brook wrote:
> On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> > On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> > > If you don't need real barriers, then why does the kvm code have them?
> > 
> > We need real barriers but AFAIK kvm does not have them :(
> > IOW: virtio is currently broken with kvm, and my patch did
> > not fix this. The comment that I added says as much.
> 
> So your code just makes the bug harder to reproduce? Doesn't sound like a good 
> thing to me.
> 
> Paul

There are multiple bugs, I can't fix all of them,
for all architectures, in one patch.

-- 
MST

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 14:34               ` Michael S. Tsirkin
@ 2009-11-11 16:13                 ` Paul Brook
  0 siblings, 0 replies; 17+ messages in thread
From: Paul Brook @ 2009-11-11 16:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael S. Tsirkin

On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> On Wed, Nov 11, 2009 at 02:16:00PM +0000, Paul Brook wrote:
> > On Wednesday 11 November 2009, Michael S. Tsirkin wrote:
> > > On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> > > > If you don't need real barriers, then why does the kvm code have
> > > > them?
> > >
> > > We need real barriers but AFAIK kvm does not have them :(
> > > IOW: virtio is currently broken with kvm, and my patch did
> > > not fix this. The comment that I added says as much.
> >
> > So your code just makes the bug harder to reproduce? Doesn't sound like a
> > good thing to me.
> >
> > Paul
> 
> There are multiple bugs, I can't fix all of them,
> for all architectures, in one patch.

Maybe not, but the associated comment now appears to be bogus. Either we 
execute everything in lockstep (as the comment says, in which case no barriers 
are required), or we need proper SMP barriers.
Having a half-harted barrier that maybe works some of the time on some hosts, 
and is completely unnecessary in most cases, and doesn't match the comment is 
IMO significantly worse than what we had before.

Paul

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 14:08           ` Michael S. Tsirkin
  2009-11-11 14:16             ` Paul Brook
@ 2009-11-11 17:18             ` Scott Tsai
  2009-11-11 18:08               ` Michael S. Tsirkin
                                 ` (2 more replies)
  1 sibling, 3 replies; 17+ messages in thread
From: Scott Tsai @ 2009-11-11 17:18 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Paul Brook, qemu-devel

On Wed, Nov 11, 2009 at 10:08 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
>> If you don't need real barriers, then why does the kvm code have them?
>
> We need real barriers but AFAIK kvm does not have them :(
> IOW: virtio is currently broken with kvm, and my patch did
> not fix this. The comment that I added says as much.

How about just using GCC's __sync__synchronize atomic builtin (if
detected as available by configure)?
It's a full memory barrier instead of just a write barrier,  for x86,
it generates the same code as the current Linux mb() implementation:
"mfence" on x86_64
"lock orl $0x0,(%esp)" on x86 unless -march is specified to a
processor with "mfence".
PPC could continue to use "eieio" while other architectures could just
default to __sync_synchronize

I do have a newbie question, when exactly would vrtio have to handle
concurrent access from multiple threads?
My current reading of the code suggests:
1. when CONFIG_IOTHREAD is true
2. when CONFIG_KVM is true and the guest machine has multiple CPUs

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 17:18             ` Scott Tsai
@ 2009-11-11 18:08               ` Michael S. Tsirkin
  2009-11-11 18:09               ` Michael S. Tsirkin
  2009-11-13  3:00               ` Jamie Lokier
  2 siblings, 0 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 18:08 UTC (permalink / raw)
  To: Scott Tsai; +Cc: Paul Brook, qemu-devel

On Thu, Nov 12, 2009 at 01:18:11AM +0800, Scott Tsai wrote:
> On Wed, Nov 11, 2009 at 10:08 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> > On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> >> If you don't need real barriers, then why does the kvm code have them?
> >
> > We need real barriers but AFAIK kvm does not have them :(
> > IOW: virtio is currently broken with kvm, and my patch did
> > not fix this. The comment that I added says as much.
> 
> How about just using GCC's __sync__synchronize atomic builtin (if
> detected as available by configure)?
> It's a full memory barrier instead of just a write barrier,  for x86,
> it generates the same code as the current Linux mb() implementation:
> "mfence" on x86_64
> "lock orl $0x0,(%esp)" on x86 unless -march is specified to a
> processor with "mfence".
> PPC could continue to use "eieio" while other architectures could just
> default to __sync_synchronize

Hmm, on x86 that's more expensive than it needs to be...
We can also ifdef platforms that we care about ...

> I do have a newbie question, when exactly would vrtio have to handle
> concurrent access from multiple threads?
> My current reading of the code suggests:
> 1. when CONFIG_IOTHREAD is true
> 2. when CONFIG_KVM is true and the guest machine has multiple CPUs

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 17:18             ` Scott Tsai
  2009-11-11 18:08               ` Michael S. Tsirkin
@ 2009-11-11 18:09               ` Michael S. Tsirkin
  2009-11-11 18:37                 ` Scott Tsai
  2009-11-13  3:00               ` Jamie Lokier
  2 siblings, 1 reply; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 18:09 UTC (permalink / raw)
  To: Scott Tsai; +Cc: Paul Brook, qemu-devel

On Thu, Nov 12, 2009 at 01:18:11AM +0800, Scott Tsai wrote:
> On Wed, Nov 11, 2009 at 10:08 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> > On Wed, Nov 11, 2009 at 01:45:35PM +0000, Paul Brook wrote:
> >> If you don't need real barriers, then why does the kvm code have them?
> >
> > We need real barriers but AFAIK kvm does not have them :(
> > IOW: virtio is currently broken with kvm, and my patch did
> > not fix this. The comment that I added says as much.
> 
> How about just using GCC's __sync__synchronize atomic builtin (if
> detected as available by configure)?
> It's a full memory barrier instead of just a write barrier,  for x86,
> it generates the same code as the current Linux mb() implementation:
> "mfence" on x86_64
> "lock orl $0x0,(%esp)" on x86 unless -march is specified to a
> processor with "mfence".
> PPC could continue to use "eieio" while other architectures could just
> default to __sync_synchronize
> 
> I do have a newbie question, when exactly would vrtio have to handle
> concurrent access from multiple threads?
> My current reading of the code suggests:
> 1. when CONFIG_IOTHREAD is true
> 2. when CONFIG_KVM is true and the guest machine has multiple CPUs

Right. I don't think CONFIG_IOTHREAD can work correctly
without kvm though: how would atomics be handled?

-- 
MST

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 18:09               ` Michael S. Tsirkin
@ 2009-11-11 18:37                 ` Scott Tsai
  2009-11-11 19:56                   ` Michael S. Tsirkin
  0 siblings, 1 reply; 17+ messages in thread
From: Scott Tsai @ 2009-11-11 18:37 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Paul Brook, qemu-devel

On Thu, Nov 12, 2009 at 2:09 AM, Michael S. Tsirkin <mst@redhat.com> wrote:
>> I do have a newbie question, when exactly would vrtio have to handle
>> concurrent access from multiple threads?
>> My current reading of the code suggests:
>> 1. when CONFIG_IOTHREAD is true
>> 2. when CONFIG_KVM is true and the guest machine has multiple CPUs
>
> Right. I don't think CONFIG_IOTHREAD can work correctly
> without kvm though: how would atomics be handled?

I naively imagined it to work like this:
When CONFIG_IOTHREAD is true and CONFIG_KVM is false,
all the tcg CPUs run in the tcg_cpu_thread and device emulation code
runs in io_thread,
so if the tcg translators generate suitable memory barrier
instructions when it sees a "lfence", "sfence", "mfence" instruction
while emulating a x86 or "sync" while emulating a MIPS everything
should work but a quick look at target-*/translate.c suggests memory
barrier instructions are treated as nops.

So maybe --enable-io-thread while --disable-kvm should not be allowed
at configure time.
Does anyone actually ship qemu with CONFIG_IOTHREAD enabled?

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 18:37                 ` Scott Tsai
@ 2009-11-11 19:56                   ` Michael S. Tsirkin
  0 siblings, 0 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2009-11-11 19:56 UTC (permalink / raw)
  To: Scott Tsai; +Cc: Paul Brook, qemu-devel

On Thu, Nov 12, 2009 at 02:37:26AM +0800, Scott Tsai wrote:
> On Thu, Nov 12, 2009 at 2:09 AM, Michael S. Tsirkin <mst@redhat.com> wrote:
> >> I do have a newbie question, when exactly would vrtio have to handle
> >> concurrent access from multiple threads?
> >> My current reading of the code suggests:
> >> 1. when CONFIG_IOTHREAD is true
> >> 2. when CONFIG_KVM is true and the guest machine has multiple CPUs
> >
> > Right. I don't think CONFIG_IOTHREAD can work correctly
> > without kvm though: how would atomics be handled?
> 
> I naively imagined it to work like this:
> When CONFIG_IOTHREAD is true and CONFIG_KVM is false,
> all the tcg CPUs run in the tcg_cpu_thread and device emulation code
> runs in io_thread,
> so if the tcg translators generate suitable memory barrier
> instructions when it sees a "lfence", "sfence", "mfence" instruction
> while emulating a x86 or "sync" while emulating a MIPS everything
> should work

that might not be enough. guest can do e.g. atomics on the same memory
with iothread. In parctice, with virtio it doesn't.

> but a quick look at target-*/translate.c suggests memory
> barrier instructions are treated as nops.
> 
> So maybe --enable-io-thread while --disable-kvm should not be allowed
> at configure time.
> Does anyone actually ship qemu with CONFIG_IOTHREAD enabled?

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

* Re: [Qemu-devel] Re: [PATCH] qemu/virtio: make wmb compiler barrier + comments
  2009-11-11 17:18             ` Scott Tsai
  2009-11-11 18:08               ` Michael S. Tsirkin
  2009-11-11 18:09               ` Michael S. Tsirkin
@ 2009-11-13  3:00               ` Jamie Lokier
  2 siblings, 0 replies; 17+ messages in thread
From: Jamie Lokier @ 2009-11-13  3:00 UTC (permalink / raw)
  To: Scott Tsai; +Cc: qemu-devel, Paul Brook, Michael S. Tsirkin

Scott Tsai wrote:
> I do have a newbie question, when exactly would vrtio have to handle
> concurrent access from multiple threads?
> My current reading of the code suggests:
> 1. when CONFIG_IOTHREAD is true
> 2. when CONFIG_KVM is true and the guest machine has multiple CPUs

It's enough to have CONFIG_KVM with a single guest CPU, isn't it?

Because the guest CPU can still run concurrently with the I/O thread
on kvm, and the host may have multiple CPUs even though the guest does
not.

-- Jamie

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

end of thread, other threads:[~2009-11-13  3:00 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-26 13:17 [Qemu-devel] [PATCH] qemu/virtio: make wmb compiler barrier + comments Michael S. Tsirkin
2009-11-11  1:34 ` Paul Brook
2009-11-11  9:37   ` [Qemu-devel] " Michael S. Tsirkin
2009-11-11 13:01     ` Paul Brook
2009-11-11 13:12       ` Michael S. Tsirkin
2009-11-11 13:45         ` Paul Brook
2009-11-11 14:08           ` Michael S. Tsirkin
2009-11-11 14:16             ` Paul Brook
2009-11-11 14:34               ` Michael S. Tsirkin
2009-11-11 16:13                 ` Paul Brook
2009-11-11 17:18             ` Scott Tsai
2009-11-11 18:08               ` Michael S. Tsirkin
2009-11-11 18:09               ` Michael S. Tsirkin
2009-11-11 18:37                 ` Scott Tsai
2009-11-11 19:56                   ` Michael S. Tsirkin
2009-11-13  3:00               ` Jamie Lokier
2009-11-11 13:15       ` Michael S. Tsirkin

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.