[PATCH net] dpaa_eth: fix the access method for the dpaa_napi_portal

Subsystems: networking drivers, the rest

STALE1991d LANDED

Landed in mainline as 433dfc99aa3e on 2021-02-23.

4 messages, 4 authors, 2021-02-23 · open the first message on its own page

[PATCH net] dpaa_eth: fix the access method for the dpaa_napi_portal

From: Camelia Groza <hidden>
Date: 2021-02-18 19:16:55

The current use of container_of is flawed and unnecessary. Obtain
the dpaa_napi_portal reference from the private percpu data instead.

Fixes: a1e031ffb422 ("dpaa_eth: add XDP_REDIRECT support")
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Camelia Groza <redacted>
---
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
index 6faa20bed488..9905caeaeee3 100644
--- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
+++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
@@ -2672,7 +2672,6 @@ static enum qman_cb_dqrr_result rx_default_dqrr(struct qman_portal *portal,
 	u32 hash;
 	u64 ns;
 
-	np = container_of(&portal, struct dpaa_napi_portal, p);
 	dpaa_fq = container_of(fq, struct dpaa_fq, fq_base);
 	fd_status = be32_to_cpu(fd->status);
 	fd_format = qm_fd_get_format(fd);
@@ -2687,6 +2686,7 @@ static enum qman_cb_dqrr_result rx_default_dqrr(struct qman_portal *portal,
 
 	percpu_priv = this_cpu_ptr(priv->percpu_priv);
 	percpu_stats = &percpu_priv->stats;
+	np = &percpu_priv->np;
 
 	if (unlikely(dpaa_eth_napi_schedule(percpu_priv, portal, sched_napi)))
 		return qman_cb_dqrr_stop;
-- 
2.17.1

RE: [PATCH net] dpaa_eth: fix the access method for the dpaa_napi_portal

From: Madalin Bucur (OSS) <hidden>
Date: 2021-02-19 10:16:58

quoted hunk
-----Original Message-----
From: Camelia Alexandra Groza <redacted>
Sent: 18 February 2021 20:21
To: kuba@kernel.org; davem@davemloft.net; s.hauer@pengutronix.de
Cc: brouer@redhat.com; Madalin Bucur (OSS) <redacted>;
netdev@vger.kernel.org; Camelia Alexandra Groza [off-list ref]
Subject: [PATCH net] dpaa_eth: fix the access method for the
dpaa_napi_portal

The current use of container_of is flawed and unnecessary. Obtain
the dpaa_napi_portal reference from the private percpu data instead.

Fixes: a1e031ffb422 ("dpaa_eth: add XDP_REDIRECT support")
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Camelia Groza <redacted>
---
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
index 6faa20bed488..9905caeaeee3 100644
--- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
+++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
@@ -2672,7 +2672,6 @@ static enum qman_cb_dqrr_result
rx_default_dqrr(struct qman_portal *portal,
 	u32 hash;
 	u64 ns;

-	np = container_of(&portal, struct dpaa_napi_portal, p);
 	dpaa_fq = container_of(fq, struct dpaa_fq, fq_base);
 	fd_status = be32_to_cpu(fd->status);
 	fd_format = qm_fd_get_format(fd);
@@ -2687,6 +2686,7 @@ static enum qman_cb_dqrr_result
rx_default_dqrr(struct qman_portal *portal,

 	percpu_priv = this_cpu_ptr(priv->percpu_priv);
 	percpu_stats = &percpu_priv->stats;
+	np = &percpu_priv->np;

 	if (unlikely(dpaa_eth_napi_schedule(percpu_priv, portal,
sched_napi)))
 		return qman_cb_dqrr_stop;
--
2.17.1
Acked-by: Madalin Bucur <redacted>

Re: [PATCH net] dpaa_eth: fix the access method for the dpaa_napi_portal

From: Jesper Dangaard Brouer <hidden>
Date: 2021-02-19 13:42:36

On Thu, 18 Feb 2021 20:21:06 +0200
Camelia Groza [off-list ref] wrote:
The current use of container_of is flawed and unnecessary. Obtain
the dpaa_napi_portal reference from the private percpu data instead.

Fixes: a1e031ffb422 ("dpaa_eth: add XDP_REDIRECT support")
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Camelia Groza <redacted>
---
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
LGTM

Acked-by: Jesper Dangaard Brouer <redacted>

-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Principal Kernel Engineer at Red Hat
  LinkedIn: http://www.linkedin.com/in/brouer

Re: [PATCH net] dpaa_eth: fix the access method for the dpaa_napi_portal

From: patchwork-bot+netdevbpf@kernel.org
Date: 2021-02-23 02:51:26

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 18 Feb 2021 20:21:06 +0200 you wrote:
The current use of container_of is flawed and unnecessary. Obtain
the dpaa_napi_portal reference from the private percpu data instead.

Fixes: a1e031ffb422 ("dpaa_eth: add XDP_REDIRECT support")
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Camelia Groza <redacted>

[...]
Here is the summary with links:
  - [net] dpaa_eth: fix the access method for the dpaa_napi_portal
    https://git.kernel.org/netdev/net/c/433dfc99aa3e

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help