linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/5] xhci: Add rmb() between reading event validity & event data access.
@ 2011-03-25  7:44 Matt Evans
  2011-03-25 23:11 ` Segher Boessenkool
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Evans @ 2011-03-25  7:44 UTC (permalink / raw)
  To: sarah.a.sharp; +Cc: linuxppc-dev, linux-usb

On weakly-ordered systems, the reading of an event's content must occur
after reading the event's validity.

Signed-off-by: Matt Evans <matt@ozlabs.org>
---
 drivers/usb/host/xhci-ring.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
index 45f3b77..b46efd9 100644
--- a/drivers/usb/host/xhci-ring.c
+++ b/drivers/usb/host/xhci-ring.c
@@ -2151,7 +2151,7 @@ static void xhci_handle_event(struct xhci_hcd *xhci)
 		return;
 	}
 	xhci_dbg(xhci, "%s - OS owns TRB\n", __func__);
-
+	rmb();
 	/* FIXME: Handle more event types. */
 	switch ((le32_to_cpu(event->event_cmd.flags) & TRB_TYPE_BITMASK)) {
 	case TRB_TYPE(TRB_COMPLETION):
-- 
1.7.0.4

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

end of thread, other threads:[~2011-03-29 21:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-25  7:44 [PATCH 3/5] xhci: Add rmb() between reading event validity & event data access Matt Evans
2011-03-25 23:11 ` Segher Boessenkool
2011-03-28  4:52   ` [PATCH v2 " Matt Evans
2011-03-28 22:20     ` Sarah Sharp
2011-03-29 18:56     ` Dmitry Torokhov
2011-03-29 21:23       ` Benjamin Herrenschmidt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).