[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1260705119.4532.609.camel@localhost>
Date: Sun, 13 Dec 2009 11:51:59 +0000
From: Ben Hutchings <bhutchings@...arflare.com>
To: Julia Lawall <julia@...u.dk>
Cc: David Miller <davem@...emloft.net>, florian@...nwrt.org,
netdev@...r.kernel.org
Subject: Re: question about drivers/net/cpmac.c
On Sun, 2009-12-13 at 12:00 +0100, Julia Lawall wrote:
> On Sun, 13 Dec 2009, David Miller wrote:
>
> > From: Julia Lawall <julia@...u.dk>
> > Date: Sun, 13 Dec 2009 11:22:54 +0100 (CET)
> >
> > > The function __devinit cpmac_probe in the file drivers/net/cpmac.c
> > > contains the following code:
> > >
> > > memcpy(dev->dev_addr, pdata->dev_addr, sizeof(dev->dev_addr));
> > >
> > > Is it correct that the size of the pointer is what is wanted?
> >
> > Everything that does sizeof(netdev->dev_addr) is a bug.
> >
> > At some point we changed netdev->dev_addr from an array of chars to a
> > pointer to a dynamically allocated buffer.
> >
> > So these cases worked before that change and need to be updated
> > in order to be correct.
> >
> > Looking quickly there are a couple of these things under
> > drivers/net
>
> Fixed how? I looked a bit to find where the field was initialized, but it
> is just initialized to a field of something else, so it was not so
> clear what the size should be.
[...]
The size should be dev->addr_len (assuming that has already been
initialised) which will be ETH_ALEN for Ethernet devices.
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.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists