From: Johannes Berg <johannes@sipsolutions.net>
To: David Miller <davem@davemloft.net>
Cc: dinggnu@gmail.com, linville@tuxdriver.com,
linux-wireless@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: mac80211/cfg.c: fix error using of sizeof()
Date: Wed, 06 Feb 2013 20:28:29 +0100 [thread overview]
Message-ID: <1360178909.7910.61.camel@jlt4.sipsolutions.net> (raw)
In-Reply-To: <20130206.133304.809962323533002767.davem@davemloft.net>
On Wed, 2013-02-06 at 13:33 -0500, David Miller wrote:
> From: Cong Ding <dinggnu@gmail.com>
> Date: Wed, 6 Feb 2013 17:23:45 +0100
>
> > Using 'sizeof' on array given as function argument returns size of a pointer
> > rather than the size of array.
> >
> > Signed-off-by: Cong Ding <dinggnu@gmail.com>
> > ---
> > net/mac80211/cfg.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
> > index 661b878..af561d5 100644
> > --- a/net/mac80211/cfg.c
> > +++ b/net/mac80211/cfg.c
> > @@ -2058,7 +2058,8 @@ static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
> > {
> > struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
> >
> > - memcpy(sdata->vif.bss_conf.mcast_rate, rate, sizeof(rate));
> > + memcpy(sdata->vif.bss_conf.mcast_rate, rate,
> > + sizeof(int) * IEEE80211_NUM_BANDS);
> >
>
> This is not indented properly. The "sizeof(int..." should start at the
> first column after the openning parenthesis of the memcpy() call.
Yeah I fixed it when I applied it ... oh well.
johannes
prev parent reply other threads:[~2013-02-06 19:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-06 16:23 [PATCH] net: mac80211/cfg.c: fix error using of sizeof() Cong Ding
2013-02-06 16:27 ` Johannes Berg
2013-02-06 17:54 ` Ben Greear
2013-02-06 17:59 ` Ben Greear
[not found] ` <1360167826-29265-1-git-send-email-dinggnu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-02-06 17:58 ` Ben Greear
2013-02-06 18:33 ` David Miller
2013-02-06 19:28 ` Johannes Berg [this message]
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=1360178909.7910.61.camel@jlt4.sipsolutions.net \
--to=johannes@sipsolutions.net \
--cc=davem@davemloft.net \
--cc=dinggnu@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=netdev@vger.kernel.org \
/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).