* [dpdk-dev] [Bug 295] max_rx_pkt_len issues with i40e dpdk SRIOV driver net_i40e_vf.
@ 2019-09-12 5:07 bugzilla
0 siblings, 0 replies; only message in thread
From: bugzilla @ 2019-09-12 5:07 UTC (permalink / raw)
To: dev
https://bugs.dpdk.org/show_bug.cgi?id=295
Bug ID: 295
Summary: max_rx_pkt_len issues with i40e dpdk SRIOV driver
net_i40e_vf.
Product: DPDK
Version: 18.02
Hardware: x86
OS: All
Status: RESOLVED
Severity: normal
Priority: Normal
Component: ethdev
Assignee: dev@dpdk.org
Reporter: lavaraj@gmail.com
CC: xiao.zhang@intel.com
Target Milestone: ---
Resolution: DUPLICATE
CC: xiao.zhang@intel.com
Status: RESOLVED
max_rx_pkt_len issues with i40e dpdk SRIOV driver (net_i40e_vf).
================================================================
When deployed an SRIOV setup with Intel® Ethernet 700 Series 40GB NIC, we
noticed the traffic with default mtu (1500) is not working.
The maximum MSS which was worked is 1456 ( instead of the default value 1460).
On debugging, it is found that the driver is actually setting the
dev_data->dev_conf.rxmode.max_rx_pkt_len to 1518(ETHER_MAX_LEN) which is wrong.
The max len is not including the vlan tag len( also not including QinQ).
The ETH Overhead is defined as below
#define I40E_ETH_OVERHEAD \
(ETHER_HDR_LEN + ETHER_CRC_LEN + I40E_VLAN_TAG_SIZE * 2)
which is equal to 26
So for supporting an MTU size of 1500, the max_rx_pkt_len should be 1526
instead of 1518.
The i40evf_dev_mtu_set API also wrongly checking the framesize against
ETHER_MAX_LEN(1518) to set the jumbo_frame mode.
The attached patch resolved the issue for our testing.
Please verify and fix the issue.
Thanks and Regards,
Lava
--- Comment #1 from Xiao Zhang (xiao.zhang@intel.com) ---
duplicate of 296
*** This bug has been marked as a duplicate of bug 296 ***
--
You are receiving this mail because:
You are the assignee for the bug.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-09-12 5:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-12 5:07 [dpdk-dev] [Bug 295] max_rx_pkt_len issues with i40e dpdk SRIOV driver net_i40e_vf bugzilla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).