From: Hemant Agrawal Date: Wed, 6 Oct 2021 17:01:25 +0000 (+0530) Subject: net/dpaa2: add debug log for jumbo MTU X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=79ef98252eaebced0a39d37149b57b17c9bff218;p=dpdk.git net/dpaa2: add debug log for jumbo MTU This patch adds a debug print for MTU configured on the device when jumbo frames are enabled. Signed-off-by: Hemant Agrawal --- diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.c index 9cf55c0f0b..275656fbe4 100644 --- a/drivers/net/dpaa2/dpaa2_ethdev.c +++ b/drivers/net/dpaa2/dpaa2_ethdev.c @@ -573,6 +573,8 @@ dpaa2_eth_dev_configure(struct rte_eth_dev *dev) dev->data->dev_conf.rxmode.max_rx_pkt_len - RTE_ETHER_HDR_LEN - RTE_ETHER_CRC_LEN - VLAN_TAG_SIZE; + DPAA2_PMD_INFO("MTU configured for the device: %d", + dev->data->mtu); } else { return -1; }