examples/vhost: use MAC compare helper
authorYuanhan Liu <yuanhan.liu@linux.intel.com>
Mon, 2 May 2016 21:23:46 +0000 (14:23 -0700)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Tue, 10 May 2016 18:22:40 +0000 (20:22 +0200)
rte_ether.h already provides a helper function to do mac address
compare. No need to define our own, use it directly.

Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
examples/vhost/main.c

index 31160e5..e706d88 100644 (file)
 /* Maximum long option length for option parsing. */
 #define MAX_LONG_OPT_SZ 64
 
-/* Used to compare MAC addresses. */
-#define MAC_ADDR_CMP 0xFFFFFFFFFFFFULL
-
 /* mask of enabled ports */
 static uint32_t enabled_port_mask = 0;
 
@@ -707,15 +704,6 @@ static unsigned check_ports_num(unsigned nb_ports)
        return valid_num_ports;
 }
 
-/*
- * Compares a packet destination MAC address to a device MAC address.
- */
-static inline int __attribute__((always_inline))
-ether_addr_cmp(struct ether_addr *ea, struct ether_addr *eb)
-{
-       return ((*(uint64_t *)ea ^ *(uint64_t *)eb) & MAC_ADDR_CMP) == 0;
-}
-
 static inline struct vhost_dev *__attribute__((always_inline))
 find_vhost_dev(struct ether_addr *mac)
 {
@@ -723,7 +711,7 @@ find_vhost_dev(struct ether_addr *mac)
 
        TAILQ_FOREACH(vdev, &vhost_dev_list, next) {
                if (vdev->ready == DEVICE_RX &&
-                   ether_addr_cmp(mac, &vdev->mac_address))
+                   is_same_ether_addr(mac, &vdev->mac_address))
                        return vdev;
        }