From: Anand B Jyoti Date: Fri, 28 Jul 2017 07:28:04 +0000 (+0530) Subject: vnf_common: Correcting the max number of ports supported X-Git-Tag: opnfv-5.0.RC1~52 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F45%2F38345%2F1;p=samplevnf.git vnf_common: Correcting the max number of ports supported JIRA: SAMPLEVNF-69 Causing memory corruption due to wrong value. Correcting to 64 from 16. Change-Id: I0a6634398fd6f0f1e56aab63c88a48c97586d9d4 Signed-off-by: Anand B Jyoti --- diff --git a/common/vnf_common/vnf_common.h b/common/vnf_common/vnf_common.h index a6b1aaa2..2ba51482 100644 --- a/common/vnf_common/vnf_common.h +++ b/common/vnf_common/vnf_common.h @@ -45,7 +45,7 @@ #define PKT_EGR_DIR 1 #ifndef PIPELINE_MAX_PORT_IN -#define PIPELINE_MAX_PORT_IN 16 +#define PIPELINE_MAX_PORT_IN 64 #endif #define RTE_PIPELINE_MAX_NAME_SZ 124