[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240625175434.53ccea3a@kernel.org>
Date: Tue, 25 Jun 2024 17:54:34 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Breno Leitao <leitao@...ian.org>
Cc: Sunil Goutham <sgoutham@...vell.com>, "David S. Miller"
<davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, Paolo Abeni
<pabeni@...hat.com>, horms@...nel.org, linux-arm-kernel@...ts.infradead.org
(moderated list:ARM/CAVIUM THUNDER NETWORK DRIVER), netdev@...r.kernel.org
(open list:NETWORKING DRIVERS), linux-kernel@...r.kernel.org (open list)
Subject: Re: [PATCH net-next] net: thunderx: Unembed netdev structure
On Mon, 24 Jun 2024 03:29:18 -0700 Breno Leitao wrote:
> static void bgx_lmac_handler(struct net_device *netdev)
> {
> - struct lmac *lmac = container_of(netdev, struct lmac, netdev);
> + struct lmac *lmac = netdev_priv(netdev);
I think you are storing a pointer to lmac, so:
struct lmac **priv = netdev_priv(netdev);
struct lmac *lmac = *priv;
--
pw-bot: cr
Powered by blists - more mailing lists