]> git.droids-corp.org - dpdk.git/blobdiff - app/test-pmd/ieee1588fwd.c
net: add rte prefix to ether functions
[dpdk.git] / app / test-pmd / ieee1588fwd.c
index c6aa3c618992bd153570e39f2206cd9c98e9b009..2b7003be4f26b590ff2d60bf6d4aafd923984c39 100644 (file)
@@ -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;