[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20100614135912.GA25015@redhat.com>
Date: Mon, 14 Jun 2010 16:59:12 +0300
From: "Michael S. Tsirkin" <mst@...hat.com>
To: virtualization@...ts.linux-foundation.org,
Rusty Russell <rusty@...tcorp.com.au>,
Jiri Pirko <jpirko@...hat.com>, Shirley Ma <xma@...ibm.com>,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: potential race in virtio ring?
Hi!
I was going over the vring code and noticed, that
the ring has this check:
irqreturn_t vring_interrupt(int irq, void *_vq)
{
struct vring_virtqueue *vq = to_vvq(_vq);
if (!more_used(vq)) {
pr_debug("virtqueue interrupt with no work for %p\n", vq);
return IRQ_NONE;
static inline bool more_used(const struct vring_virtqueue *vq)
{
return vq->last_used_idx != vq->vring.used->idx;
}
My concern is that with virtio net, more_used is called
on a CPU different from the one that polls the vq.
This might mean that last_used_idx value might be stale.
Could this lead to a missed interrupt?
Thanks,
--
MST
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists