IB/mthca: Use mmiowb() to avoid firmware commands getting jumbled up
authorRoland Dreier <rolandd@cisco.com>
Wed, 10 Oct 2007 02:59:17 +0000 (19:59 -0700)
committerRoland Dreier <rolandd@cisco.com>
Wed, 10 Oct 2007 02:59:17 +0000 (19:59 -0700)
commit76d7cc0345a037e8eea426f8abc710abd22946dd
tree49936369d48985749a4beda048b6f3b5e5f31c2e
parentdcb3f974da827c964cb8d419fbb4350cdc08a559
IB/mthca: Use mmiowb() to avoid firmware commands getting jumbled up

Firmware commands are sent to the HCA by writing multiple words to a
command register block.  Access to this block of registers is
serialized with a mutex.  However, on large SGI systems, problems were
seen with multiple CPUs issuing FW commands at the same time, because
the writes to the register block may be reordered within the system
interconnect and reach the HCA in a different order than they were
issued (even with the mutex).  Fix this by adding an mmiowb() before
dropping the mutex.

Tested-by: Arthur Kepner <akepner@sgi.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/hw/mthca/mthca_cmd.c