net: ti: slight optimization of addr compare
Use possibly more efficient ether_addr_equal to instead of memcmp. Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Ding Tianhong <dingtianhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
00fa4ce9fd
commit
d9f394fe56
@ -163,7 +163,7 @@ int cpsw_ale_match_addr(struct cpsw_ale *ale, u8 *addr, u16 vid)
|
||||
if (cpsw_ale_get_vlan_id(ale_entry) != vid)
|
||||
continue;
|
||||
cpsw_ale_get_addr(ale_entry, entry_addr);
|
||||
if (memcmp(entry_addr, addr, 6) == 0)
|
||||
if (ether_addr_equal(entry_addr, addr))
|
||||
return idx;
|
||||
}
|
||||
return -ENOENT;
|
||||
|
Loading…
Reference in New Issue
Block a user