On Tue, 13 May 2014 15:05:40 +0200
Johannes Berg <[email protected]> wrote:

> On Mon, 2014-05-12 at 19:51 +0200, Fabian Frederick wrote:
> > Cc: Johannes Berg <[email protected]>
> > Cc: "John W. Linville" <[email protected]>
> > Cc: Andrew Morton <[email protected]>
> > Signed-off-by: Fabian Frederick <[email protected]>
> > ---
> >  net/wireless/util.c | 42 +++++++++++++++++++++---------------------
> >  1 file changed, 21 insertions(+), 21 deletions(-)
> > 
> > diff --git a/net/wireless/util.c b/net/wireless/util.c
> > index e5872ff..ab23b95 100644
> > --- a/net/wireless/util.c
> > +++ b/net/wireless/util.c
> > @@ -381,8 +381,8 @@ int ieee80211_data_to_8023(struct sk_buff *skb, const 
> > u8 *addr,
> >      *   1     0   BSSID SA    DA    n/a
> >      *   1     1   RA    TA    DA    SA
> >      */
> > -   memcpy(dst, ieee80211_get_DA(hdr), ETH_ALEN);
> > -   memcpy(src, ieee80211_get_SA(hdr), ETH_ALEN);
> > +   ether_addr_copy(dst, ieee80211_get_DA(hdr));
> > +   ether_addr_copy(src, ieee80211_get_SA(hdr));
> 
> I think this patch is mostly fine, but I'd like you to understand and
> document (in the commit log) why it is, and fix the (potential future)
> issue with "dst" as discussed in the other thread.
> 
> johannes
Thanks Johannes, I'll try to do that.

Fabian

> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to