From: Michal Kubiak <michal.kubiak@intel.com>
To: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
<netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net] i825xx: sni_82596: use eth_hw_addr_set()
Date: Wed, 15 Mar 2023 19:12:03 +0100 [thread overview]
Message-ID: <ZBIKcx6/77aePZUE@localhost.localdomain> (raw)
In-Reply-To: <20230315134117.79511-1-tsbogend@alpha.franken.de>
On Wed, Mar 15, 2023 at 02:41:17PM +0100, Thomas Bogendoerfer wrote:
> Copy scrambled mac address octects into an array then eth_hw_addr_set().
>
> Fixes: adeef3e32146 ("net: constify netdev->dev_addr")
> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> ---
> drivers/net/ethernet/i825xx/sni_82596.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/ethernet/i825xx/sni_82596.c b/drivers/net/ethernet/i825xx/sni_82596.c
> index daec9ce04531..54bb4d9a0d1e 100644
> --- a/drivers/net/ethernet/i825xx/sni_82596.c
> +++ b/drivers/net/ethernet/i825xx/sni_82596.c
> @@ -78,6 +78,7 @@ static int sni_82596_probe(struct platform_device *dev)
> void __iomem *mpu_addr;
> void __iomem *ca_addr;
> u8 __iomem *eth_addr;
> + u8 mac[ETH_ALEN];
>
> res = platform_get_resource(dev, IORESOURCE_MEM, 0);
> ca = platform_get_resource(dev, IORESOURCE_MEM, 1);
> @@ -109,12 +110,13 @@ static int sni_82596_probe(struct platform_device *dev)
> goto probe_failed;
>
> /* someone seems to like messed up stuff */
> - netdevice->dev_addr[0] = readb(eth_addr + 0x0b);
> - netdevice->dev_addr[1] = readb(eth_addr + 0x0a);
> - netdevice->dev_addr[2] = readb(eth_addr + 0x09);
> - netdevice->dev_addr[3] = readb(eth_addr + 0x08);
> - netdevice->dev_addr[4] = readb(eth_addr + 0x07);
> - netdevice->dev_addr[5] = readb(eth_addr + 0x06);
> + mac[0] = readb(eth_addr + 0x0b);
> + mac[1] = readb(eth_addr + 0x0a);
> + mac[2] = readb(eth_addr + 0x09);
> + mac[3] = readb(eth_addr + 0x08);
> + mac[4] = readb(eth_addr + 0x07);
> + mac[5] = readb(eth_addr + 0x06);
> + eth_hw_addr_set(netdevice, mac);
> iounmap(eth_addr);
>
> if (netdevice->irq < 0) {
> --
> 2.35.3
>
The fix looks fine. Good catch!
I would only suggest to add more description why it needed to be
changed.
(The current version of the commit message only contains information what
was done, but it is quite obvious by looking at the code).
Thanks,
Michal
Reviewed-by: Michal Kubiak <michal.kubiak@intel.com>
next prev parent reply other threads:[~2023-03-15 18:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-15 13:41 [PATCH net] i825xx: sni_82596: use eth_hw_addr_set() Thomas Bogendoerfer
2023-03-15 18:12 ` Michal Kubiak [this message]
2023-03-17 0:36 ` Jakub Kicinski
2023-03-17 0:40 ` patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZBIKcx6/77aePZUE@localhost.localdomain \
--to=michal.kubiak@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=tsbogend@alpha.franken.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).