net: add rte prefix to ether functions
[dpdk.git] / drivers / net / netvsc / hn_rxtx.c
index a5850c2..6192420 100644 (file)
@@ -128,8 +128,8 @@ hn_update_packet_stats(struct hn_stats *stats, const struct rte_mbuf *m)
        }
 
        ea = rte_pktmbuf_mtod(m, const struct rte_ether_addr *);
-       if (is_multicast_ether_addr(ea)) {
-               if (is_broadcast_ether_addr(ea))
+       if (rte_is_multicast_ether_addr(ea)) {
+               if (rte_is_broadcast_ether_addr(ea))
                        stats->broadcast++;
                else
                        stats->multicast++;