From: Ding Tianhong <dingtianhong@huawei.com>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
"Mauro Carvalho Chehab" <m.chehab@samsung.com>,
<linux-media@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Netdev <netdev@vger.kernel.org>
Subject: Re: [PATCH v3 13/19] media: dvb_core: slight optimization of addr compare
Date: Thu, 26 Dec 2013 19:09:10 +0800 [thread overview]
Message-ID: <52BC0E56.80003@huawei.com> (raw)
In-Reply-To: <52BABA23.2040709@cogentembedded.com>
On 2013/12/25 18:57, Sergei Shtylyov wrote:
> Hello.
>
> On 25-12-2013 7:29, Ding Tianhong wrote:
>
>> Use possibly more efficient ether_addr_equal
>> instead of memcmp.
>
>> Cc: Mauro Carvalho Chehab <m.chehab@samsung.com>
>> Cc: linux-media@vger.kernel.org
>> Cc: linux-kernel@vger.kernel.org
>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>> Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
>> ---
>> drivers/media/dvb-core/dvb_net.c | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>
>> diff --git a/drivers/media/dvb-core/dvb_net.c b/drivers/media/dvb-core/dvb_net.c
>> index f91c80c..3dfc33b 100644
>> --- a/drivers/media/dvb-core/dvb_net.c
>> +++ b/drivers/media/dvb-core/dvb_net.c
>> @@ -179,7 +179,7 @@ static __be16 dvb_net_eth_type_trans(struct sk_buff *skb,
>> eth = eth_hdr(skb);
>>
>> if (*eth->h_dest & 1) {
>> - if(memcmp(eth->h_dest,dev->broadcast, ETH_ALEN)==0)
>> + if(ether_addr_equal(eth->h_dest,dev->broadcast))
>
> There should be space after comma.
>
>> @@ -674,11 +674,11 @@ static void dvb_net_ule( struct net_device *dev, const u8 *buf, size_t buf_len )
>> if (priv->rx_mode != RX_MODE_PROMISC) {
>> if (priv->ule_skb->data[0] & 0x01) {
>> /* multicast or broadcast */
>> - if (memcmp(priv->ule_skb->data, bc_addr, ETH_ALEN)) {
>> + if (!ether_addr_equal(priv->ule_skb->data, bc_addr)) {
>> /* multicast */
>> if (priv->rx_mode == RX_MODE_MULTI) {
>> int i;
>> - for(i = 0; i < priv->multi_num && memcmp(priv->ule_skb->data, priv->multi_macs[i], ETH_ALEN); i++)
>> + for(i = 0; i < priv->multi_num && !ether_addr_equal(priv->ule_skb->data, priv->multi_macs[i]); i++)
>
> Shouldn't this line be broken?
>
ok, thanks.
Regards
>> ;
>> if (i == priv->multi_num)
>> drop = 1;
>
> WBR, Sergei
>
>
>
>
next prev parent reply other threads:[~2013-12-26 11:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-25 3:29 [PATCH v3 13/19] media: dvb_core: slight optimization of addr compare Ding Tianhong
2013-12-25 10:57 ` Sergei Shtylyov
2013-12-26 11:09 ` Ding Tianhong [this message]
2014-01-07 13:54 ` Mauro Carvalho Chehab
2014-01-08 1:07 ` Ding Tianhong
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=52BC0E56.80003@huawei.com \
--to=dingtianhong@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=m.chehab@samsung.com \
--cc=netdev@vger.kernel.org \
--cc=sergei.shtylyov@cogentembedded.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.