diff options
author | Eilon Greenstein <eilong@broadcom.com> | 2009-03-02 10:59:17 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-03 09:32:36 +0300 |
commit | 98589bb1099732847c5deedc213c17c50dd1bc75 (patch) | |
tree | a26e0b64b5debd746b02526dde83877bfde57314 /drivers/net/bnx2x_main.c | |
parent | a8c9a53c22441efcd57ad7955231b2804696b133 (diff) | |
download | linux-98589bb1099732847c5deedc213c17c50dd1bc75.tar.xz |
bnx2x: Remove redundant smb_mb on unload
As noted by Ben Hutchings <bhutchings@solarflare.com>, these smb_mb are not
needed
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x_main.c')
-rw-r--r-- | drivers/net/bnx2x_main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 942717526d6a..5954bed60652 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -7210,7 +7210,6 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) struct bnx2x_fastpath *fp = &bp->fp[i]; cnt = 1000; - smp_mb(); while (bnx2x_has_tx_work_unload(fp)) { bnx2x_tx_int(fp, 1000); @@ -7226,7 +7225,6 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) } cnt--; msleep(1); - smp_mb(); } } /* Give HW time to discard old tx messages */ |