diff options
author | Olivier Matz <olivier.matz@6wind.com> | 2019-05-21 18:13:03 +0200 |
---|---|---|
committer | Ferruh Yigit <ferruh.yigit@intel.com> | 2019-05-24 13:34:45 +0200 |
commit | 6d13ea8e8e49ab957deae2bba5ecf4a4bfe747d1 (patch) | |
tree | 0108d8e1701d235beebca6d96c4af03426f594ff /app/test-pmd/ieee1588fwd.c | |
parent | e482e0fa6a106c548afe9c52e71abf3a70848d46 (diff) | |
download | dpdk-6d13ea8e8e49ab957deae2bba5ecf4a4bfe747d1.zip dpdk-6d13ea8e8e49ab957deae2bba5ecf4a4bfe747d1.tar.gz dpdk-6d13ea8e8e49ab957deae2bba5ecf4a4bfe747d1.tar.xz |
net: add rte prefix to ether structures
Add 'rte_' prefix to structures:
- rename struct ether_addr as struct rte_ether_addr.
- rename struct ether_hdr as struct rte_ether_hdr.
- rename struct vlan_hdr as struct rte_vlan_hdr.
- rename struct vxlan_hdr as struct rte_vxlan_hdr.
- rename struct vxlan_gpe_hdr as struct rte_vxlan_gpe_hdr.
Do not update the command line library to avoid adding a dependency to
librte_net.
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
Diffstat (limited to 'app/test-pmd/ieee1588fwd.c')
-rw-r--r-- | app/test-pmd/ieee1588fwd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/test-pmd/ieee1588fwd.c b/app/test-pmd/ieee1588fwd.c index 6ae802c..c6aa3c6 100644 --- a/app/test-pmd/ieee1588fwd.c +++ b/app/test-pmd/ieee1588fwd.c @@ -93,8 +93,8 @@ static void ieee1588_packet_fwd(struct fwd_stream *fs) { struct rte_mbuf *mb; - struct ether_hdr *eth_hdr; - struct ether_addr addr; + struct rte_ether_hdr *eth_hdr; + struct rte_ether_addr addr; struct ptpv2_msg *ptp_hdr; uint16_t eth_type; uint32_t timesync_index; @@ -111,7 +111,7 @@ ieee1588_packet_fwd(struct fwd_stream *fs) * Check that the received packet is a PTP packet that was detected * by the hardware. */ - eth_hdr = rte_pktmbuf_mtod(mb, struct ether_hdr *); + eth_hdr = rte_pktmbuf_mtod(mb, struct rte_ether_hdr *); eth_type = rte_be_to_cpu_16(eth_hdr->ether_type); if (! (mb->ol_flags & PKT_RX_IEEE1588_PTP)) { @@ -141,7 +141,7 @@ ieee1588_packet_fwd(struct fwd_stream *fs) * PTP_SYNC_MESSAGE. */ ptp_hdr = (struct ptpv2_msg *) (rte_pktmbuf_mtod(mb, char *) + - sizeof(struct ether_hdr)); + sizeof(struct rte_ether_hdr)); if (ptp_hdr->version != 0x02) { printf("Port %u Received PTP V2 Ethernet frame with wrong PTP" " protocol version 0x%x (should be 0x02)\n", |