From: Simon Wunderlich <simon.wunderlich@s2003.tu-chemnitz.de>
To: The list for a Better Approach To Mobile Ad-hoc Networking
<b.a.t.m.a.n@lists.open-mesh.org>
Subject: Re: [B.A.T.M.A.N.] [PATCH next] batman-adv: use batadv_compare_eth instead of memcmp
Date: Sun, 18 Nov 2012 21:23:53 +0100 [thread overview]
Message-ID: <20121118202353.GA22840@pandem0nium> (raw)
In-Reply-To: <1353239559-18279-1-git-send-email-ordex@autistici.org>
[-- Attachment #1: Type: text/plain, Size: 1386 bytes --]
Looks good.
Acked-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Thanks,
Simon
On Sun, Nov 18, 2012 at 12:52:39PM +0100, Antonio Quartulli wrote:
> When comparing ethernet address the batadv_compare_eth function has
> to be used instead of memcmp.
>
> This was introduced by 923d5d148cdd0928c9c5f8e0e2024f585dcf6efd
> ("batman-adv: fix bla compare function")
>
> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
> ---
> bridge_loop_avoidance.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/bridge_loop_avoidance.c b/bridge_loop_avoidance.c
> index fc56ea2..5aebe93 100644
> --- a/bridge_loop_avoidance.c
> +++ b/bridge_loop_avoidance.c
> @@ -79,7 +79,7 @@ static int batadv_compare_backbone_gw(const struct hlist_node *node,
> hash_entry);
> const struct batadv_backbone_gw *gw1 = data1, *gw2 = data2;
>
> - if (memcmp(gw1->orig, gw2->orig, ETH_ALEN))
> + if (!batadv_compare_eth(gw1->orig, gw2->orig))
> return 0;
>
> if (gw1->vid != gw2->vid)
> @@ -96,7 +96,7 @@ static int batadv_compare_claim(const struct hlist_node *node,
> hash_entry);
> const struct batadv_claim *cl1 = data1, *cl2 = data2;
>
> - if (memcmp(cl1->addr, cl2->addr, ETH_ALEN))
> + if (!batadv_compare_eth(cl1->addr, cl2->addr))
> return 0;
>
> if (cl1->vid != cl2->vid)
> --
> 1.8.0
>
>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next prev parent reply other threads:[~2012-11-18 20:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-18 11:52 [B.A.T.M.A.N.] [PATCH next] batman-adv: use batadv_compare_eth instead of memcmp Antonio Quartulli
2012-11-18 20:23 ` Simon Wunderlich [this message]
2012-11-19 3:44 ` Marek Lindner
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=20121118202353.GA22840@pandem0nium \
--to=simon.wunderlich@s2003.tu-chemnitz.de \
--cc=b.a.t.m.a.n@lists.open-mesh.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