This series implements support and use of API for configuration and validation of max size for LRO aggregated packet.
v2: Updated ethdev patch per review comments. v3: Updated ethdev and testpmd patches per review comments. v4: Updated ethdev patch for QEDE PMD per review comments. v5: Updated ethdev patch for IXGBE PMD, and testpmd patch, per review comments. v6: This is half of v5 1/3. Only the agreed part is here. v7: Remove other PMDs update, allow max_lro_pkt_len 0 in application conf, and in device info. Dekel Peled (3): ethdev: support API to set max LRO packet size net/mlx5: use API to set max LRO packet size app/testpmd: use API to set max LRO packet size app/test-pmd/cmdline.c | 76 +++++++++++++++++++++++++++++ app/test-pmd/config.c | 2 + app/test-pmd/parameters.c | 7 +++ doc/guides/nics/features.rst | 2 + doc/guides/nics/mlx5.rst | 2 + doc/guides/rel_notes/deprecation.rst | 4 -- doc/guides/rel_notes/release_19_11.rst | 8 +++ doc/guides/testpmd_app_ug/run_app.rst | 4 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 ++++ drivers/net/mlx5/mlx5.h | 3 ++ drivers/net/mlx5/mlx5_ethdev.c | 1 + drivers/net/mlx5/mlx5_rxq.c | 5 +- lib/librte_ethdev/rte_ethdev.c | 59 ++++++++++++++++++++++ lib/librte_ethdev/rte_ethdev.h | 4 ++ 14 files changed, 180 insertions(+), 6 deletions(-) -- 1.8.3.1