Commit 3e5b510e authored by Eilon Greenstein's avatar Eilon Greenstein Committed by David S. Miller

bnx2x: smp_mb and not just smp_rmb

Signed-off-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8b3a0f0b
...@@ -7173,7 +7173,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) ...@@ -7173,7 +7173,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
struct bnx2x_fastpath *fp = &bp->fp[i]; struct bnx2x_fastpath *fp = &bp->fp[i];
cnt = 1000; cnt = 1000;
smp_rmb(); smp_mb();
while (bnx2x_has_tx_work_unload(fp)) { while (bnx2x_has_tx_work_unload(fp)) {
bnx2x_tx_int(fp, 1000); bnx2x_tx_int(fp, 1000);
...@@ -7189,7 +7189,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) ...@@ -7189,7 +7189,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
} }
cnt--; cnt--;
msleep(1); msleep(1);
smp_rmb(); smp_mb();
} }
} }
/* Give HW time to discard old tx messages */ /* Give HW time to discard old tx messages */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment