Use possibly more efficient ether_addr_equal
to instead of memcmp.

Cc: Jon Mason <jdma...@kudzu.us>
Signed-off-by: Ding Tianhong <dingtianh...@huawei.com>
---
 drivers/net/ethernet/neterion/vxge/vxge-main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/neterion/vxge/vxge-main.c 
b/drivers/net/ethernet/neterion/vxge/vxge-main.c
index 11b1c70..6eae216 100644
--- a/drivers/net/ethernet/neterion/vxge/vxge-main.c
+++ b/drivers/net/ethernet/neterion/vxge/vxge-main.c
@@ -1430,7 +1430,7 @@ vxge_search_mac_addr_in_da_table(struct vxge_vpath 
*vpath, struct macInfo *mac)
                return status;
        }
 
-       while (memcmp(mac->macaddr, macaddr, ETH_ALEN)) {
+       while (!ether_addr_equal(mac->macaddr, macaddr)) {
                status = vxge_hw_vpath_mac_addr_get_next(vpath->handle,
                                macaddr, macmask);
                if (status != VXGE_HW_OK)
-- 
1.8.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to