Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 00/13] net: Add and use ether_addr_equal
@ 2012-05-09  4:56 Joe Perches
  2012-05-09  4:56 ` [PATCH 07/13] bluetooth: Convert compare_ether_addr to ether_addr_equal Joe Perches
  2012-05-10  1:21 ` [PATCH 00/13] net: Add and use ether_addr_equal David Miller
  0 siblings, 2 replies; 9+ messages in thread
From: Joe Perches @ 2012-05-09  4:56 UTC (permalink / raw)
  To: David S. Miller, netdev, bridge, netfilter-devel, netfilter,
	coreteam, linux-wireless
  Cc: linux-kernel, linux-bluetooth

Add a boolean function to test 2 ethernet addresses for equality
Convert compare_ether_addr uses to ether_addr_equal

Joe Perches (13):
  etherdevice.h: Add ether_addr_equal
  802: Convert compare_ether_addr to ether_addr_equal
  8021q: Convert compare_ether_addr to ether_addr_equal
  bridge: netfilter: Convert compare_ether_addr to ether_addr_equal
  bridge: Convert compare_ether_addr to ether_addr_equal
  atm: Convert compare_ether_addr to ether_addr_equal
  bluetooth: Convert compare_ether_addr to ether_addr_equal
  mac80211: Convert compare_ether_addr to ether_addr_equal
  mac80211: Convert compare_ether_addr to ether_addr_equal by hand
  netfilter: Convert compare_ether_addr to ether_addr_equal
  wireless: Convert compare_ether_addr to ether_addr_equal
  wireless: Convert compare_ether_addr to ether_addr_equal by hand
  dsa: Convert compare_ether_addr to ether_addr_equal

 include/linux/etherdevice.h               |   12 +++++++++
 net/802/stp.c                             |    2 +-
 net/8021q/vlan.c                          |   10 +++---
 net/8021q/vlan_core.c                     |    3 +-
 net/8021q/vlan_dev.c                      |   10 +++---
 net/atm/lec.c                             |    6 ++--
 net/atm/mpc.c                             |    3 +-
 net/bluetooth/bnep/core.c                 |    6 ++--
 net/bridge/br_device.c                    |    2 +-
 net/bridge/br_fdb.c                       |   14 +++++-----
 net/bridge/br_input.c                     |    2 +-
 net/bridge/br_stp_bpdu.c                  |    2 +-
 net/bridge/br_stp_if.c                    |   11 +++----
 net/bridge/netfilter/ebt_stp.c            |    4 +-
 net/dsa/slave.c                           |   10 +++---
 net/mac80211/cfg.c                        |    2 +-
 net/mac80211/ibss.c                       |   12 ++++----
 net/mac80211/ieee80211_i.h                |    2 +-
 net/mac80211/iface.c                      |    2 +-
 net/mac80211/mesh.c                       |    4 +-
 net/mac80211/mesh_hwmp.c                  |   14 +++++-----
 net/mac80211/mesh_pathtbl.c               |   12 ++++----
 net/mac80211/mlme.c                       |   29 +++++++++------------
 net/mac80211/rx.c                         |   39 +++++++++++++---------------
 net/mac80211/scan.c                       |    2 +-
 net/mac80211/sta_info.c                   |    8 +++---
 net/mac80211/sta_info.h                   |    2 +-
 net/mac80211/status.c                     |    2 +-
 net/mac80211/tx.c                         |   11 +++----
 net/netfilter/ipset/ip_set_bitmap_ipmac.c |    4 +-
 net/netfilter/xt_mac.c                    |    2 +-
 net/wireless/ibss.c                       |    2 +-
 net/wireless/mlme.c                       |   31 +++++++++++------------
 net/wireless/scan.c                       |    2 +-
 net/wireless/util.c                       |   11 +++----
 net/wireless/wext-sme.c                   |    2 +-
 net/wireless/wext-spy.c                   |    2 +-
 37 files changed, 147 insertions(+), 147 deletions(-)

-- 
1.7.8.111.gad25c.dirty


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 07/13] bluetooth: Convert compare_ether_addr to ether_addr_equal
  2012-05-09  4:56 [PATCH 00/13] net: Add and use ether_addr_equal Joe Perches
@ 2012-05-09  4:56 ` Joe Perches
  2012-05-10  1:21 ` [PATCH 00/13] net: Add and use ether_addr_equal David Miller
  1 sibling, 0 replies; 9+ messages in thread
From: Joe Perches @ 2012-05-09  4:56 UTC (permalink / raw)
  To: David S. Miller, linux-kernel
  Cc: Marcel Holtmann, Gustavo Padovan, Johan Hedberg, linux-bluetooth,
	netdev

Use the new bool function ether_addr_equal to add
some clarity and reduce the likelihood for misuse
of compare_ether_addr for sorting.

Done via cocci script:

$ cat compare_ether_addr.cocci
@@
expression a,b;
@@
-	!compare_ether_addr(a, b)
+	ether_addr_equal(a, b)

@@
expression a,b;
@@
-	compare_ether_addr(a, b)
+	!ether_addr_equal(a, b)

@@
expression a,b;
@@
-	!ether_addr_equal(a, b) == 0
+	ether_addr_equal(a, b)

@@
expression a,b;
@@
-	!ether_addr_equal(a, b) != 0
+	!ether_addr_equal(a, b)

@@
expression a,b;
@@
-	ether_addr_equal(a, b) == 0
+	!ether_addr_equal(a, b)

@@
expression a,b;
@@
-	ether_addr_equal(a, b) != 0
+	ether_addr_equal(a, b)

@@
expression a,b;
@@
-	!!ether_addr_equal(a, b)
+	ether_addr_equal(a, b)

Signed-off-by: Joe Perches <joe@perches.com>
---
 net/bluetooth/bnep/core.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c
index a779ec7..88884d1 100644
--- a/net/bluetooth/bnep/core.c
+++ b/net/bluetooth/bnep/core.c
@@ -69,7 +69,7 @@ static struct bnep_session *__bnep_get_session(u8 *dst)
 	BT_DBG("");
 
 	list_for_each_entry(s, &bnep_session_list, list)
-		if (!compare_ether_addr(dst, s->eh.h_source))
+		if (ether_addr_equal(dst, s->eh.h_source))
 			return s;
 
 	return NULL;
@@ -422,10 +422,10 @@ static inline int bnep_tx_frame(struct bnep_session *s, struct sk_buff *skb)
 	iv[il++] = (struct kvec) { &type, 1 };
 	len++;
 
-	if (compress_src && !compare_ether_addr(eh->h_dest, s->eh.h_source))
+	if (compress_src && ether_addr_equal(eh->h_dest, s->eh.h_source))
 		type |= 0x01;
 
-	if (compress_dst && !compare_ether_addr(eh->h_source, s->eh.h_dest))
+	if (compress_dst && ether_addr_equal(eh->h_source, s->eh.h_dest))
 		type |= 0x02;
 
 	if (type)
-- 
1.7.8.111.gad25c.dirty

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-09  4:56 [PATCH 00/13] net: Add and use ether_addr_equal Joe Perches
  2012-05-09  4:56 ` [PATCH 07/13] bluetooth: Convert compare_ether_addr to ether_addr_equal Joe Perches
@ 2012-05-10  1:21 ` David Miller
  2012-05-10  1:48   ` Joe Perches
  2012-05-10  6:48   ` Johannes Berg
  1 sibling, 2 replies; 9+ messages in thread
From: David Miller @ 2012-05-10  1:21 UTC (permalink / raw)
  To: joe
  Cc: netdev, bridge, netfilter-devel, netfilter, coreteam,
	linux-wireless, linux-kernel, linux-bluetooth

From: Joe Perches <joe@perches.com>
Date: Tue,  8 May 2012 21:56:44 -0700

> Add a boolean function to test 2 ethernet addresses for equality
> Convert compare_ether_addr uses to ether_addr_equal

This series looks great, I'll apply all of it.

Thanks Joe.

That case you didn't convert in mac80211 is probably the
bug Johannes was talking about which started this whole
discussion.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  1:21 ` [PATCH 00/13] net: Add and use ether_addr_equal David Miller
@ 2012-05-10  1:48   ` Joe Perches
  2012-05-10  1:53     ` David Miller
  2012-05-10  6:48   ` Johannes Berg
  1 sibling, 1 reply; 9+ messages in thread
From: Joe Perches @ 2012-05-10  1:48 UTC (permalink / raw)
  To: David Miller, Julia Lawall
  Cc: netdev, bridge, netfilter-devel, netfilter, coreteam,
	linux-wireless, linux-kernel, linux-bluetooth

On Wed, 2012-05-09 at 21:21 -0400, David Miller wrote:
> From: Joe Perches <joe@perches.com>
> Date: Tue,  8 May 2012 21:56:44 -0700
> 
> > Add a boolean function to test 2 ethernet addresses for equality
> > Convert compare_ether_addr uses to ether_addr_equal
> 
> This series looks great, I'll apply all of it.

coccinelle is a nifty, better sed, tool.  Thanks Julia et al.

> That case you didn't convert in mac80211 is probably the
> bug Johannes was talking about which started this whole
> discussion.

Looks like it.

Do you want a similar patch/patches for drivers/net?

If I break it out by nominal driver/maintainer,
it'll be a highish number of low density patches.

$ git grep -w compare_ether_addr drivers/net | wc -l
59
$ git grep -w -l compare_ether_addr drivers/net | wc -l
31

Maybe just a single patch?

Also the compare_ether_addr_64bits function is
still used a couple dozen times.  Maybe another
patch for those?  ether_addr_equal_64bits?



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  1:48   ` Joe Perches
@ 2012-05-10  1:53     ` David Miller
  0 siblings, 0 replies; 9+ messages in thread
From: David Miller @ 2012-05-10  1:53 UTC (permalink / raw)
  To: joe
  Cc: julia.lawall, netdev, bridge, netfilter-devel, netfilter,
	coreteam, linux-wireless, linux-kernel, linux-bluetooth

From: Joe Perches <joe@perches.com>
Date: Wed, 09 May 2012 18:48:04 -0700

> Maybe just a single patch?

Yes, I think high density on this one, it's extremely
mechanical.

> Also the compare_ether_addr_64bits function is
> still used a couple dozen times.  Maybe another
> patch for those?  ether_addr_equal_64bits?

Use your best judgment.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  1:21 ` [PATCH 00/13] net: Add and use ether_addr_equal David Miller
  2012-05-10  1:48   ` Joe Perches
@ 2012-05-10  6:48   ` Johannes Berg
  2012-05-10  6:54     ` Joe Perches
  1 sibling, 1 reply; 9+ messages in thread
From: Johannes Berg @ 2012-05-10  6:48 UTC (permalink / raw)
  To: David Miller
  Cc: joe, netdev, bridge, netfilter-devel, netfilter, coreteam,
	linux-wireless, linux-kernel, linux-bluetooth

On Wed, 2012-05-09 at 21:21 -0400, David Miller wrote:

> That case you didn't convert in mac80211 is probably the
> bug Johannes was talking about which started this whole
> discussion.

The bug case that started it all is in net/wireless/scan.c and Emmanuel
has since changed it back to memcmp(). Not sure if that's the one you
were referring to or not :-)

johannes


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  6:48   ` Johannes Berg
@ 2012-05-10  6:54     ` Joe Perches
  2012-05-10  6:56       ` Johannes Berg
  0 siblings, 1 reply; 9+ messages in thread
From: Joe Perches @ 2012-05-10  6:54 UTC (permalink / raw)
  To: Johannes Berg
  Cc: David Miller, netdev, bridge, netfilter-devel, netfilter,
	coreteam, linux-wireless, linux-kernel, linux-bluetooth

On Thu, 2012-05-10 at 08:48 +0200, Johannes Berg wrote:
> On Wed, 2012-05-09 at 21:21 -0400, David Miller wrote:
> 
> > That case you didn't convert in mac80211 is probably the
> > bug Johannes was talking about which started this whole
> > discussion.
> 
> The bug case that started it all is in net/wireless/scan.c and Emmanuel
> has since changed it back to memcmp(). Not sure if that's the one you
> were referring to or not :-)

That's the one that I left alone.

Post patch:
$ git grep -n -w compare_ether_addr net
net/batman-adv/main.h:198: * note: can't use compare_ether_addr() as it requires aligned memory
net/wireless/scan.c:381:        return compare_ether_addr(a->bssid, b->bssid);



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  6:54     ` Joe Perches
@ 2012-05-10  6:56       ` Johannes Berg
  2012-05-10  7:08         ` Emmanuel Grumbach
  0 siblings, 1 reply; 9+ messages in thread
From: Johannes Berg @ 2012-05-10  6:56 UTC (permalink / raw)
  To: Joe Perches
  Cc: David Miller, netdev, bridge, netfilter-devel, netfilter,
	coreteam, linux-wireless, linux-kernel, linux-bluetooth

On Wed, 2012-05-09 at 23:54 -0700, Joe Perches wrote:
> On Thu, 2012-05-10 at 08:48 +0200, Johannes Berg wrote:
> > On Wed, 2012-05-09 at 21:21 -0400, David Miller wrote:
> > 
> > > That case you didn't convert in mac80211 is probably the
> > > bug Johannes was talking about which started this whole
> > > discussion.
> > 
> > The bug case that started it all is in net/wireless/scan.c and Emmanuel
> > has since changed it back to memcmp(). Not sure if that's the one you
> > were referring to or not :-)
> 
> That's the one that I left alone.
> 
> Post patch:
> $ git grep -n -w compare_ether_addr net
> net/batman-adv/main.h:198: * note: can't use compare_ether_addr() as it requires aligned memory
> net/wireless/scan.c:381:        return compare_ether_addr(a->bssid, b->bssid);

Ok, great, then that means the fix from Emmanuel won't conflict when it
gets in.

johannes


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 00/13] net: Add and use ether_addr_equal
  2012-05-10  6:56       ` Johannes Berg
@ 2012-05-10  7:08         ` Emmanuel Grumbach
  0 siblings, 0 replies; 9+ messages in thread
From: Emmanuel Grumbach @ 2012-05-10  7:08 UTC (permalink / raw)
  To: Johannes Berg
  Cc: Joe Perches, David Miller, netdev, bridge, netfilter-devel,
	netfilter, coreteam, linux-wireless, linux-kernel,
	linux-bluetooth

>> >
>> > > That case you didn't convert in mac80211 is probably the
>> > > bug Johannes was talking about which started this whole
>> > > discussion.
>> >
>> > The bug case that started it all is in net/wireless/scan.c and Emmanuel
>> > has since changed it back to memcmp(). Not sure if that's the one you
>> > were referring to or not :-)
>>
>> That's the one that I left alone.
>>
>> Post patch:
>> $ git grep -n -w compare_ether_addr net
>> net/batman-adv/main.h:198: * note: can't use compare_ether_addr() as it requires aligned memory
>> net/wireless/scan.c:381:        return compare_ether_addr(a->bssid, b->bssid);
>
> Ok, great, then that means the fix from Emmanuel won't conflict when it
> gets in.
>

Thanks Joe - as Johannes said this won't conflict with my patch. And
yes the code is now more clear.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-05-10  7:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09  4:56 [PATCH 00/13] net: Add and use ether_addr_equal Joe Perches
2012-05-09  4:56 ` [PATCH 07/13] bluetooth: Convert compare_ether_addr to ether_addr_equal Joe Perches
2012-05-10  1:21 ` [PATCH 00/13] net: Add and use ether_addr_equal David Miller
2012-05-10  1:48   ` Joe Perches
2012-05-10  1:53     ` David Miller
2012-05-10  6:48   ` Johannes Berg
2012-05-10  6:54     ` Joe Perches
2012-05-10  6:56       ` Johannes Berg
2012-05-10  7:08         ` Emmanuel Grumbach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox