Merge branch 'addr_compare'
Ding Tianhong says:
====================
slight optimization of addr compare for some modules
Joe Perches add ether_addr_equal_unaligned to test if
possibly unaligned to u16 Ethernet addresses are equal.
If CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is set, this uses
the slightly faster generic routine ether_addr_equal,
otherwise this uses memcmp.
So I use the recently added and possibly more efficient
ether_addr_equal_unaligned to instead of memcmp for slight
optimization.
v2: Because a lot of places are already using 16b aligned MAC
address for both operands, so use the ether_addr_equal to
instead of ether_addr_equal_unaligned.Thanks for Joe, Alex
and Antonio's opinions.
Also remove the patch for bridge.
v3: According Joe's suggestion, the patch
(net: slight optimization of addr compare for some modules)
should be broken into several patches, and it will be good
to review for maintainers. So I will send rest of the patches
for first step, and next step, I will seperate the netdev patch
and send them by another patchset for net-next.
also fix some changelog.
v3.5 Change some style for patch 8 and patch 13. Thanks for
Sergei's suggestion.
====================
Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- drivers/atm/nicstar.c 2 additions, 2 deletionsdrivers/atm/nicstar.c
- drivers/infiniband/hw/nes/nes_cm.c 1 addition, 2 deletionsdrivers/infiniband/hw/nes/nes_cm.c
- drivers/isdn/i4l/isdn_net.c 2 additions, 2 deletionsdrivers/isdn/i4l/isdn_net.c
- drivers/media/dvb-core/dvb_net.c 6 additions, 4 deletionsdrivers/media/dvb-core/dvb_net.c
- drivers/net/ethernet/amd/pcnet32.c 1 addition, 1 deletiondrivers/net/ethernet/amd/pcnet32.c
- drivers/net/ethernet/atheros/atlx/atl1.c 2 additions, 1 deletiondrivers/net/ethernet/atheros/atlx/atl1.c
- drivers/net/ethernet/freescale/ucc_geth.c 0 additions, 5 deletionsdrivers/net/ethernet/freescale/ucc_geth.c
- drivers/net/hamradio/bpqether.c 1 addition, 1 deletiondrivers/net/hamradio/bpqether.c
- drivers/net/ppp/pppoe.c 2 additions, 2 deletionsdrivers/net/ppp/pppoe.c
- drivers/net/wireless/adm8211.c 1 addition, 1 deletiondrivers/net/wireless/adm8211.c
- drivers/net/wireless/brcm80211/brcmfmac/p2p.c 3 additions, 4 deletionsdrivers/net/wireless/brcm80211/brcmfmac/p2p.c
- drivers/net/wireless/cw1200/sta.c 3 additions, 2 deletionsdrivers/net/wireless/cw1200/sta.c
- drivers/net/wireless/cw1200/txrx.c 1 addition, 2 deletionsdrivers/net/wireless/cw1200/txrx.c
- drivers/net/wireless/hostap/hostap_80211_rx.c 4 additions, 4 deletionsdrivers/net/wireless/hostap/hostap_80211_rx.c
- drivers/net/wireless/hostap/hostap_80211_tx.c 2 additions, 2 deletionsdrivers/net/wireless/hostap/hostap_80211_tx.c
- drivers/net/wireless/hostap/hostap_ap.c 14 additions, 14 deletionsdrivers/net/wireless/hostap/hostap_ap.c
- drivers/net/wireless/hostap/hostap_hw.c 1 addition, 1 deletiondrivers/net/wireless/hostap/hostap_hw.c
- drivers/net/wireless/hostap/hostap_ioctl.c 2 additions, 2 deletionsdrivers/net/wireless/hostap/hostap_ioctl.c
- drivers/net/wireless/hostap/hostap_main.c 3 additions, 5 deletionsdrivers/net/wireless/hostap/hostap_main.c
- drivers/net/wireless/ipw2x00/ipw2200.c 17 additions, 17 deletionsdrivers/net/wireless/ipw2x00/ipw2200.c
Please register or sign in to comment