diff options
author | Anand B Jyoti <anand.b.jyoti@intel.com> | 2017-07-28 12:58:04 +0530 |
---|---|---|
committer | Anand B Jyoti <anand.b.jyoti@intel.com> | 2017-07-28 12:58:04 +0530 |
commit | 2903a180e547e79b576c45e484330ea2b4e09248 (patch) | |
tree | 25f162e5e156aed7e22188491bc9a4fe6f8fe993 /common/vnf_common | |
parent | 60c12419f0a1f792a632ec008c68c5924321ebb4 (diff) |
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 <anand.b.jyoti@intel.com>
Diffstat (limited to 'common/vnf_common')
-rw-r--r-- | common/vnf_common/vnf_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |