[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1387902949.2259.51.camel@joe-AO722>
Date: Tue, 24 Dec 2013 08:35:49 -0800
From: Joe Perches <joe@...ches.com>
To: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
Cc: Ding Tianhong <dingtianhong@...wei.com>,
Michal Ostrowski <mostrows@...thlink.net>,
Netdev <netdev@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 06/20] ppp: slight optimization of addr compare
On Tue, 2013-12-24 at 20:24 +0400, Sergei Shtylyov wrote:
> On 24-12-2013 15:28, Ding Tianhong wrote:
[]
> > diff --git a/drivers/net/ppp/pppoe.c b/drivers/net/ppp/pppoe.c
[]
> > @@ -131,12 +131,13 @@ static inline struct pppoe_net *pppoe_pernet(struct net *net)
> >
> > static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b)
> > {
> > - return a->sid == b->sid && !memcmp(a->remote, b->remote, ETH_ALEN);
> > + return a->sid == b->sid && ether_addr_equal(a->remote,
> > + b->remote);
>
> If it really doesn't fit insto single line, the continuation line should
> start right under 'a->remote'.
Better still might be
return a->sid == b->sid &&
ether_addr_equal(a->remote, b->remote);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists