[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [NET] back: fix synchronisation of access to deallocation buffer ring.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 9f50b8c2de0ad641d7795613edc35d78240dab8c # Parent 47412b44e35ec52fd30faae46e0e54dc0e6e1dd7 [NET] back: fix synchronisation of access to deallocation buffer ring. Must ensure ring is written to before producer index is incremented. Bug diagnosed by Ky Srinivasan <ksrinivasan@xxxxxxxxxx> Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- linux-2.6-xen-sparse/drivers/xen/netback/netback.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletion(-) diff -r 47412b44e35e -r 9f50b8c2de0a linux-2.6-xen-sparse/drivers/xen/netback/netback.c --- a/linux-2.6-xen-sparse/drivers/xen/netback/netback.c Mon Jun 05 14:35:22 2006 +0100 +++ b/linux-2.6-xen-sparse/drivers/xen/netback/netback.c Mon Jun 05 15:14:58 2006 +0100 @@ -458,6 +458,9 @@ inline static void net_tx_action_dealloc dc = dealloc_cons; dp = dealloc_prod; + /* Ensure we see all indexes enqueued by netif_idx_release(). */ + smp_rmb(); + /* * Free up any grants we have finished using */ @@ -695,7 +698,10 @@ static void netif_idx_release(u16 pendin unsigned long flags; spin_lock_irqsave(&_lock, flags); - dealloc_ring[MASK_PEND_IDX(dealloc_prod++)] = pending_idx; + dealloc_ring[MASK_PEND_IDX(dealloc_prod)] = pending_idx; + /* Sync with net_tx_action_dealloc: insert idx /then/ incr producer. */ + smp_wmb(); + dealloc_prod++; spin_unlock_irqrestore(&_lock, flags); tasklet_schedule(&net_tx_tasklet); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |