patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 17.11] net/bnxt: replace memory barrier for doorbell response
@ 2020-01-02  7:20 Gavin Hu
  2020-01-07 11:25 ` Luca Boccassi
  0 siblings, 1 reply; 3+ messages in thread
From: Gavin Hu @ 2020-01-02  7:20 UTC (permalink / raw)
  To: stable; +Cc: nd

[ upstream commit 21ecbde99b2f0772d36eef8276a686f3135e5de9 ]

To read the doorbell response, which is held in the host CIO memory,
rte_cio_rmb is sufficient.

Fixes: 804e746c7b73 ("net/bnxt: add hardware resource manager init code")

Signed-off-by: Gavin Hu <gavin.hu@arm.com>
Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
 drivers/net/bnxt/bnxt_hwrm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/bnxt/bnxt_hwrm.c b/drivers/net/bnxt/bnxt_hwrm.c
index d2c800d..e5ba5c3 100644
--- a/drivers/net/bnxt/bnxt_hwrm.c
+++ b/drivers/net/bnxt/bnxt_hwrm.c
@@ -149,7 +149,7 @@ static int bnxt_hwrm_send_message(struct bnxt *bp, void *msg,
 	/* Poll for the valid bit */
 	for (i = 0; i < HWRM_CMD_TIMEOUT; i++) {
 		/* Sanity check on the resp->resp_len */
-		rte_rmb();
+		rte_cio_rmb();
 		if (resp->resp_len && resp->resp_len <=
 				bp->max_resp_len) {
 			/* Last byte of resp contains the valid key */
-- 
2.7.4


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

* Re: [dpdk-stable] [PATCH 17.11] net/bnxt: replace memory barrier for doorbell response
  2020-01-02  7:20 [dpdk-stable] [PATCH 17.11] net/bnxt: replace memory barrier for doorbell response Gavin Hu
@ 2020-01-07 11:25 ` Luca Boccassi
  2020-01-07 11:35   ` Luca Boccassi
  0 siblings, 1 reply; 3+ messages in thread
From: Luca Boccassi @ 2020-01-07 11:25 UTC (permalink / raw)
  To: Gavin Hu, stable; +Cc: nd

On Thu, 2020-01-02 at 15:20 +0800, Gavin Hu wrote:
> [ upstream commit 21ecbde99b2f0772d36eef8276a686f3135e5de9 ]
> 
> To read the doorbell response, which is held in the host CIO memory,
> rte_cio_rmb is sufficient.
> 
> Fixes: 804e746c7b73 ("net/bnxt: add hardware resource manager init
> code")
> 
> Signed-off-by: Gavin Hu <gavin.hu@arm.com>
> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
> ---
>  drivers/net/bnxt/bnxt_hwrm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, applied

-- 
Kind regards,
Luca Boccassi

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

* Re: [dpdk-stable] [PATCH 17.11] net/bnxt: replace memory barrier for doorbell response
  2020-01-07 11:25 ` Luca Boccassi
@ 2020-01-07 11:35   ` Luca Boccassi
  0 siblings, 0 replies; 3+ messages in thread
From: Luca Boccassi @ 2020-01-07 11:35 UTC (permalink / raw)
  To: Gavin Hu, stable; +Cc: nd

On Tue, 2020-01-07 at 11:25 +0000, Luca Boccassi wrote:
> On Thu, 2020-01-02 at 15:20 +0800, Gavin Hu wrote:
> > [ upstream commit 21ecbde99b2f0772d36eef8276a686f3135e5de9 ]
> > 
> > To read the doorbell response, which is held in the host CIO
> > memory,
> > rte_cio_rmb is sufficient.
> > 
> > Fixes: 804e746c7b73 ("net/bnxt: add hardware resource manager init
> > code")
> > 
> > Signed-off-by: Gavin Hu <gavin.hu@arm.com>
> > Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
> > ---
> >  drivers/net/bnxt/bnxt_hwrm.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Thanks, applied

Actually, this doesn't compile as rte_cio_rmb is not available in
17.11:

drivers/net/bnxt/bnxt_hwrm.c: In function ‘bnxt_hwrm_send_message’:
drivers/net/bnxt/bnxt_hwrm.c:151:3: error: implicit declaration of
function ‘rte_cio_rmb’; did you mean ‘rte_io_rmb’? [-Werror=implicit-
function-declaration]
   rte_cio_rmb();
   ^~~~~~~~~~~
   rte_io_rmb

It was added by the following commits:

52bd60a5cf0b ("eal/arm64: define coherent I/O memory barriers")
bbc504dfbb5e ("eal/arm32: define coherent I/O memory barriers")
cbb3c4162899 ("eal/ppc64: define coherent I/O memory barriers")
0079e4fb6922 ("eal/x86: define coherent I/O memory barriers")
cd36cc49e59c ("eal: introduce coherent I/O memory barriers")

Should I drop this patch for this release?

-- 
Kind regards,
Luca Boccassi

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

end of thread, other threads:[~2020-01-07 11:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-02  7:20 [dpdk-stable] [PATCH 17.11] net/bnxt: replace memory barrier for doorbell response Gavin Hu
2020-01-07 11:25 ` Luca Boccassi
2020-01-07 11:35   ` Luca Boccassi

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).