From 10745be7adb099f559ba1b00b8d97fda59f75d62 Mon Sep 17 00:00:00 2001 From: Deepak S Date: Wed, 31 May 2017 12:56:50 +0000 Subject: [SAMPLEVNF] Adding support to handle more than 16 ports This patch extends num_ports vnf can handle ports > 16 . This include changes in the memory allocatiion and size of different paramters Change-Id: Id8907327023ba863ad107bb874cfb60bd38daee5 Signed-off-by: Deepak S --- common/VIL/l2l3_stack/lib_arp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/VIL/l2l3_stack/lib_arp.h') diff --git a/common/VIL/l2l3_stack/lib_arp.h b/common/VIL/l2l3_stack/lib_arp.h index 33875679..e2d38419 100644 --- a/common/VIL/l2l3_stack/lib_arp.h +++ b/common/VIL/l2l3_stack/lib_arp.h @@ -27,8 +27,8 @@ #define ARP_TIMER_EXPIRY 1800 /**< in Seconds, TIMER for ARP Expiry */ #define TIMER_MILLISECOND 1 #define RTE_LOGTYPE_LIBARP RTE_LOGTYPE_USER1 -#define MAX_ND_RT_ENTRY 16 -#define MAX_ARP_RT_ENTRY 16 +#define MAX_ND_RT_ENTRY 32 +#define MAX_ARP_RT_ENTRY 32 /** * A structure for Route table entries of IPv4 -- cgit 1.2.3-korg