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 50F83A057B; Wed, 1 Apr 2020 10:36:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AE7F21BEA6; Wed, 1 Apr 2020 10:36:17 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id 4ED041BE95; Wed, 1 Apr 2020 10:36:16 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id BB50C200C9D; Wed, 1 Apr 2020 10:36:15 +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 46789200CDA; Wed, 1 Apr 2020 10:36:12 +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 62FAD4024E; Wed, 1 Apr 2020 16:36:07 +0800 (SGT) From: Apeksha Gupta To: akhil.goyal@nxp.com Cc: thomas@monjalon.net, dev@dpdk.org, hemant.agrawal@nxp.com, Apeksha Gupta , stable@dpdk.org Date: Wed, 1 Apr 2020 14:05:32 +0530 Message-Id: <20200401083532.13658-1-apeksha.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH] config: update MAX_FRAG to support jumbo packets X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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