From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BE7BDA0562 for ; Tue, 31 Mar 2020 16:58:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9F512FFA; Tue, 31 Mar 2020 16:58:11 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id 72B07FFA for ; Tue, 31 Mar 2020 16:58:10 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 191D32009AB; Tue, 31 Mar 2020 16:58:10 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id F343F200991; Tue, 31 Mar 2020 16:58:07 +0200 (CEST) Received: from lsv03186.swis.in-blr01.nxp.com (lsv03186.swis.in-blr01.nxp.com [92.120.146.182]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id 86D1040294; Tue, 31 Mar 2020 22:58:05 +0800 (SGT) From: Apeksha Gupta To: akhil.goyal@nxp.com Cc: apeksha.gupta@nxp.com, stable@dpdk.org Date: Tue, 31 Mar 2020 20:28:02 +0530 Message-Id: <20200331145802.1283-1-apeksha.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-stable] [PATCH] UP: config: Update MAX_FRAG to support jumbo packets X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" RTE_LIBRTE_IP_FRAG_MAX_FRAG flag value increased from 4 to 8. By this pkt size greater than 6000 is supported in ip-fragmentation and ip-reassembly. Fixes: 9788b93b9d5 ("config: MAX_FRAG updated to support the jumbo packets") Cc: stable@dpdk.org Signed-off-by: Apeksha Gupta --- config/common_base | 2 +- config/rte_config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/common_base b/config/common_base index e231384e88..be4a6bafb5 100644 --- a/config/common_base +++ b/config/common_base @@ -950,7 +950,7 @@ CONFIG_RTE_LIBRTE_NET=y # CONFIG_RTE_LIBRTE_IP_FRAG=y CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n -CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4 +CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=8 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n # diff --git a/config/rte_config.h b/config/rte_config.h index d30786bc08..f5cdc3ddbe 100644 --- a/config/rte_config.h +++ b/config/rte_config.h @@ -82,7 +82,7 @@ #define RTE_RAWDEV_MAX_DEVS 64 /* ip_fragmentation defines */ -#define RTE_LIBRTE_IP_FRAG_MAX_FRAG 4 +#define RTE_LIBRTE_IP_FRAG_MAX_FRAG 8 #undef RTE_LIBRTE_IP_FRAG_TBL_STAT /* rte_power defines */ -- 2.17.1