From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo de Lara Subject: [PATCH] app/testpmd: swap mac in IEEE1588 forwarding Date: Thu, 10 Dec 2015 09:28:27 +0000 Message-ID: <1449739707-178153-1-git-send-email-pablo.de.lara.guarch@intel.com> To: dev@dpdk.org Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 6F0245A6C for ; Thu, 10 Dec 2015 10:30:49 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" IEEE1588 forwarding mode uses same port to receive and transmit packets. In this mode, the MAC address in the packets are not touched, and therefore, packets could be sent with the same destination MAC address as the MAC address of the port that is transmitting, which causes the packet to be dropped in some NICs. In order to avoid this scenario, MAC addresses are swapped before packet is sent out. Signed-off-by: Pablo de Lara --- app/test-pmd/ieee1588fwd.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/test-pmd/ieee1588fwd.c b/app/test-pmd/ieee1588fwd.c index c69023a..0d3b37a 100644 --- a/app/test-pmd/ieee1588fwd.c +++ b/app/test-pmd/ieee1588fwd.c @@ -123,6 +123,7 @@ ieee1588_packet_fwd(struct fwd_stream *fs) { struct rte_mbuf *mb; struct ether_hdr *eth_hdr; + struct ether_addr addr; struct ptpv2_msg *ptp_hdr; uint16_t eth_type; uint32_t timesync_index; @@ -205,6 +206,11 @@ ieee1588_packet_fwd(struct fwd_stream *fs) /* Read and check the RX timestamp. */ port_ieee1588_rx_timestamp_check(fs->rx_port, timesync_index); + /* Swap dest and src mac addresses. */ + ether_addr_copy(ð_hdr->d_addr, &addr); + ether_addr_copy(ð_hdr->s_addr, ð_hdr->d_addr); + ether_addr_copy(&addr, ð_hdr->s_addr); + /* Forward PTP packet with hardware TX timestamp */ mb->ol_flags |= PKT_TX_IEEE1588_TMST; fs->tx_packets += 1; -- 2.5.0