net: add rte prefix to ether defines
[dpdk.git] / app / test-pmd / ieee1588fwd.c
index c6aa3c6..e3b98e3 100644 (file)
@@ -115,7 +115,7 @@ ieee1588_packet_fwd(struct fwd_stream *fs)
        eth_type = rte_be_to_cpu_16(eth_hdr->ether_type);
 
        if (! (mb->ol_flags & PKT_RX_IEEE1588_PTP)) {
-               if (eth_type == ETHER_TYPE_1588) {
+               if (eth_type == RTE_ETHER_TYPE_1588) {
                        printf("Port %u Received PTP packet not filtered"
                               " by hardware\n",
                               fs->rx_port);
@@ -128,7 +128,7 @@ ieee1588_packet_fwd(struct fwd_stream *fs)
                rte_pktmbuf_free(mb);
                return;
        }
-       if (eth_type != ETHER_TYPE_1588) {
+       if (eth_type != RTE_ETHER_TYPE_1588) {
                printf("Port %u Received NON PTP packet incorrectly"
                       " detected by hardware\n",
                       fs->rx_port);
@@ -178,9 +178,9 @@ ieee1588_packet_fwd(struct fwd_stream *fs)
        port_ieee1588_rx_timestamp_check(fs->rx_port, timesync_index);
 
        /* Swap dest and src mac addresses. */
-       ether_addr_copy(&eth_hdr->d_addr, &addr);
-       ether_addr_copy(&eth_hdr->s_addr, &eth_hdr->d_addr);
-       ether_addr_copy(&addr, &eth_hdr->s_addr);
+       rte_ether_addr_copy(&eth_hdr->d_addr, &addr);
+       rte_ether_addr_copy(&eth_hdr->s_addr, &eth_hdr->d_addr);
+       rte_ether_addr_copy(&addr, &eth_hdr->s_addr);
 
        /* Forward PTP packet with hardware TX timestamp */
        mb->ol_flags |= PKT_TX_IEEE1588_TMST;