Change the RTE_ETHER_MAX_LEN from 1518 to 1526 Bugzilla ID: 296
Fixes: c5b2d13 (net: add rte prefix to ether defines) Cc: [email protected] Cc: Oliver Matz <[email protected]> Reported-by: LAVA <[email protected]> Suggested-by: LAVA <[email protected]> Signed-off-by: Muhammad Ahmad <[email protected]> --- lib/librte_net/rte_ether.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_net/rte_ether.h b/lib/librte_net/rte_ether.h index e069dc7fe..8953107f3 100644 --- a/lib/librte_net/rte_ether.h +++ b/lib/librte_net/rte_ether.h @@ -30,7 +30,7 @@ extern "C" { (RTE_ETHER_ADDR_LEN * 2 + \ RTE_ETHER_TYPE_LEN) /**< Length of Ethernet header. */ #define RTE_ETHER_MIN_LEN 64 /**< Minimum frame len, including CRC. */ -#define RTE_ETHER_MAX_LEN 1518 /**< Maximum frame len, including CRC. */ +#define RTE_ETHER_MAX_LEN 1526 /**< Maximum frame len, including CRC. */ #define RTE_ETHER_MTU \ (RTE_ETHER_MAX_LEN - RTE_ETHER_HDR_LEN - \ RTE_ETHER_CRC_LEN) /**< Ethernet MTU. */ -- 2.17.1

