From: Antonio Quartulli <antonio@meshcoding.com>
To: Ding Tianhong <dingtianhong@huawei.com>,
Marek Lindner <mareklindner@neomailbox.ch>,
Simon Wunderlich <sw@simonwunderlich.de>,
"David S. Miller" <davem@davemloft.net>,
b.a.t.m.a.n@lists.open-mesh.org, Netdev <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [B.A.T.M.A.N.] [PATCH 09/21] batman-adv: slight optimization of addr compare
Date: Mon, 23 Dec 2013 09:46:11 +0100 [thread overview]
Message-ID: <52B7F853.8050806@meshcoding.com> (raw)
In-Reply-To: <52B7C5C5.2050304@huawei.com>
[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]
On 23/12/13 06:10, Ding Tianhong wrote:
[...]
> --- a/net/batman-adv/originator.c
> +++ b/net/batman-adv/originator.c
> @@ -41,7 +41,7 @@ int batadv_compare_orig(const struct hlist_node *node, const void *data2)
> const void *data1 = container_of(node, struct batadv_orig_node,
> hash_entry);
>
> - return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
> + return ether_addr_equal_unaligned(data1, data2) ? 1 : 0;
ether_addr_equal_unaligned() returns a bool value which is implicitly
converted to 1 or 0: there is no need for the ternary if anymore.
> }
>
> /**
> diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c
> index 4add57d..5e66d4b 100644
> --- a/net/batman-adv/translation-table.c
> +++ b/net/batman-adv/translation-table.c
> @@ -51,7 +51,7 @@ static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
> const void *data1 = container_of(node, struct batadv_tt_common_entry,
> hash_entry);
>
> - return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
> + return ether_addr_equal_unaligned(data1, data2) ? 1 : 0;
same here
Moreover, include linux/etherdevice.h in both files as explained in
point 1) of Documentation/SubmitChecklist
Thanks.
Cheers,
--
Antonio Quartulli
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Antonio Quartulli <antonio@meshcoding.com>
To: Ding Tianhong <dingtianhong@huawei.com>,
Marek Lindner <mareklindner@neomailbox.ch>,
Simon Wunderlich <sw@simonwunderlich.de>,
"David S. Miller" <davem@davemloft.net>,
b.a.t.m.a.n@lists.open-mesh.org, Netdev <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 09/21] batman-adv: slight optimization of addr compare
Date: Mon, 23 Dec 2013 09:46:11 +0100 [thread overview]
Message-ID: <52B7F853.8050806@meshcoding.com> (raw)
In-Reply-To: <52B7C5C5.2050304@huawei.com>
[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]
On 23/12/13 06:10, Ding Tianhong wrote:
[...]
> --- a/net/batman-adv/originator.c
> +++ b/net/batman-adv/originator.c
> @@ -41,7 +41,7 @@ int batadv_compare_orig(const struct hlist_node *node, const void *data2)
> const void *data1 = container_of(node, struct batadv_orig_node,
> hash_entry);
>
> - return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
> + return ether_addr_equal_unaligned(data1, data2) ? 1 : 0;
ether_addr_equal_unaligned() returns a bool value which is implicitly
converted to 1 or 0: there is no need for the ternary if anymore.
> }
>
> /**
> diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c
> index 4add57d..5e66d4b 100644
> --- a/net/batman-adv/translation-table.c
> +++ b/net/batman-adv/translation-table.c
> @@ -51,7 +51,7 @@ static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
> const void *data1 = container_of(node, struct batadv_tt_common_entry,
> hash_entry);
>
> - return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
> + return ether_addr_equal_unaligned(data1, data2) ? 1 : 0;
same here
Moreover, include linux/etherdevice.h in both files as explained in
point 1) of Documentation/SubmitChecklist
Thanks.
Cheers,
--
Antonio Quartulli
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2013-12-23 8:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-23 5:10 [B.A.T.M.A.N.] [PATCH 09/21] batman-adv: slight optimization of addr compare Ding Tianhong
2013-12-23 5:10 ` Ding Tianhong
2013-12-23 8:46 ` Antonio Quartulli [this message]
2013-12-23 8:46 ` Antonio Quartulli
2013-12-23 8:59 ` [B.A.T.M.A.N.] " Joe Perches
2013-12-23 8:59 ` Joe Perches
2013-12-23 9:06 ` [B.A.T.M.A.N.] " Antonio Quartulli
2013-12-23 9:06 ` Antonio Quartulli
2013-12-23 9:12 ` [B.A.T.M.A.N.] " Ding Tianhong
2013-12-23 9:12 ` Ding Tianhong
2013-12-23 9:10 ` [B.A.T.M.A.N.] " Ding Tianhong
2013-12-23 9:10 ` Ding Tianhong
2013-12-23 9:09 ` [B.A.T.M.A.N.] " Ding Tianhong
2013-12-23 9:09 ` 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=52B7F853.8050806@meshcoding.com \
--to=antonio@meshcoding.com \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
--cc=davem@davemloft.net \
--cc=dingtianhong@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mareklindner@neomailbox.ch \
--cc=netdev@vger.kernel.org \
--cc=sw@simonwunderlich.de \
/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.