diff options
author | dingtianhong <dingtianhong@huawei.com> | 2013-12-26 06:40:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-26 13:31:33 -0500 |
commit | 7ed8ca5b1e3311e569eabe5e847841830a3eced0 (patch) | |
tree | db55bd98c72662b1eaadd39e559ca08fb84f48be /drivers/net/ppp | |
parent | dc050c9e774cfd7105090118777a072ea4498dad (diff) |
ppp: slight optimization of addr compare
Use possibly more efficient ether_addr_equal
to instead of memcmp.
Cc: Michal Ostrowski <mostrows@earthlink.net>
Cc: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ppp')
-rw-r--r-- | drivers/net/ppp/pppoe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ppp/pppoe.c b/drivers/net/ppp/pppoe.c index 82ee6ed954cb..2ea7efd11857 100644 --- a/drivers/net/ppp/pppoe.c +++ b/drivers/net/ppp/pppoe.c | |||
@@ -131,12 +131,12 @@ static inline struct pppoe_net *pppoe_pernet(struct net *net) | |||
131 | 131 | ||
132 | static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b) | 132 | static inline int cmp_2_addr(struct pppoe_addr *a, struct pppoe_addr *b) |
133 | { | 133 | { |
134 | return a->sid == b->sid && !memcmp(a->remote, b->remote, ETH_ALEN); | 134 | return a->sid == b->sid && ether_addr_equal(a->remote, b->remote); |
135 | } | 135 | } |
136 | 136 | ||
137 | static inline int cmp_addr(struct pppoe_addr *a, __be16 sid, char *addr) | 137 | static inline int cmp_addr(struct pppoe_addr *a, __be16 sid, char *addr) |
138 | { | 138 | { |
139 | return a->sid == sid && !memcmp(a->remote, addr, ETH_ALEN); | 139 | return a->sid == sid && ether_addr_equal(a->remote, addr); |
140 | } | 140 | } |
141 | 141 | ||
142 | #if 8 % PPPOE_HASH_BITS | 142 | #if 8 % PPPOE_HASH_BITS |