* [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
@ 2009-02-12 18:37 Eilon Greenstein
2009-02-12 19:21 ` Ben Hutchings
0 siblings, 1 reply; 3+ messages in thread
From: Eilon Greenstein @ 2009-02-12 18:37 UTC (permalink / raw)
To: David Miller; +Cc: netdev@vger.kernel.org
Subject: [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
---
drivers/net/bnx2x_main.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
index 6bd9219..2e95799 100644
--- a/drivers/net/bnx2x_main.c
+++ b/drivers/net/bnx2x_main.c
@@ -7173,7 +7173,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
struct bnx2x_fastpath *fp = &bp->fp[i];
cnt = 1000;
- smp_rmb();
+ smp_mb();
while (bnx2x_has_tx_work_unload(fp)) {
bnx2x_tx_int(fp, 1000);
@@ -7189,7 +7189,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
}
cnt--;
msleep(1);
- smp_rmb();
+ smp_mb();
}
}
/* Give HW time to discard old tx messages */
--
1.5.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
2009-02-12 18:37 [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb Eilon Greenstein
@ 2009-02-12 19:21 ` Ben Hutchings
2009-02-12 20:45 ` Eilon Greenstein
0 siblings, 1 reply; 3+ messages in thread
From: Ben Hutchings @ 2009-02-12 19:21 UTC (permalink / raw)
To: Eilon Greenstein; +Cc: David Miller, netdev@vger.kernel.org
On Thu, 2009-02-12 at 20:37 +0200, Eilon Greenstein wrote:
> Subject: [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
This could do with some more explanation (and comments in the code).
> Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
> ---
> drivers/net/bnx2x_main.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
> index 6bd9219..2e95799 100644
> --- a/drivers/net/bnx2x_main.c
> +++ b/drivers/net/bnx2x_main.c
> @@ -7173,7 +7173,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
> struct bnx2x_fastpath *fp = &bp->fp[i];
>
> cnt = 1000;
> - smp_rmb();
> + smp_mb();
> while (bnx2x_has_tx_work_unload(fp)) {
>
> bnx2x_tx_int(fp, 1000);
> @@ -7189,7 +7189,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
> }
> cnt--;
> msleep(1);
> - smp_rmb();
> + smp_mb();
I suspect that smp_*mb() is redundant after a schedule().
> }
> }
> /* Give HW time to discard old tx messages */
Ben.
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
2009-02-12 19:21 ` Ben Hutchings
@ 2009-02-12 20:45 ` Eilon Greenstein
0 siblings, 0 replies; 3+ messages in thread
From: Eilon Greenstein @ 2009-02-12 20:45 UTC (permalink / raw)
To: Ben Hutchings; +Cc: David Miller, netdev@vger.kernel.org
On Thu, 2009-02-12 at 11:21 -0800, Ben Hutchings wrote:
> On Thu, 2009-02-12 at 20:37 +0200, Eilon Greenstein wrote:
> > Subject: [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb
>
> This could do with some more explanation (and comments in the code).
Sorry about that, I got lazy at this part.
Since bnx2x_tx_int is also writing, the smb_rmb should be replaced with
smp_mb.
>
> > Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
> > ---
> > drivers/net/bnx2x_main.c | 4 ++--
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
> > index 6bd9219..2e95799 100644
> > --- a/drivers/net/bnx2x_main.c
> > +++ b/drivers/net/bnx2x_main.c
> > @@ -7173,7 +7173,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
> > struct bnx2x_fastpath *fp = &bp->fp[i];
> >
> > cnt = 1000;
> > - smp_rmb();
> > + smp_mb();
> > while (bnx2x_has_tx_work_unload(fp)) {
> >
> > bnx2x_tx_int(fp, 1000);
> > @@ -7189,7 +7189,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
> > }
> > cnt--;
> > msleep(1);
> > - smp_rmb();
> > + smp_mb();
>
> I suspect that smp_*mb() is redundant after a schedule().
Hmmm... It seems so... I will have to run it on few different systems in
the lab to make sure - if I won't run into any problems I will send a
new patch on top of this one with the removal of this alleged redundant
smb_mb.
Thanks Ben!
>
> > }
> > }
> > /* Give HW time to discard old tx messages */
>
> Ben.
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-12 20:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 18:37 [PATCH 27/41]bnx2x: smp_mb and not just smp_rmb Eilon Greenstein
2009-02-12 19:21 ` Ben Hutchings
2009-02-12 20:45 ` Eilon Greenstein
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).