From: John Lo Date: Fri, 18 Aug 2017 23:17:52 +0000 (-0400) Subject: Increase L2FIB MAC learn limit from 1M to 8M entries X-Git-Tag: v17.07.01~6 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=644d4671e42a5f91b575c3feacea222a90cb4275;p=vpp.git Increase L2FIB MAC learn limit from 1M to 8M entries Change-Id: I04589d3613653c402e6628202598972c2fa59d24 Signed-off-by: John Lo --- diff --git a/src/vnet/l2/l2_learn.c b/src/vnet/l2/l2_learn.c index b9904d3edf5..1bee2b4e1aa 100644 --- a/src/vnet/l2/l2_learn.c +++ b/src/vnet/l2/l2_learn.c @@ -489,7 +489,7 @@ VLIB_NODE_FUNCTION_MULTIARCH (l2learn_node, l2learn_node_fn) * Set the default number of dynamically learned macs to the number * of buckets. */ - mp->global_learn_limit = L2FIB_NUM_BUCKETS * 16; + mp->global_learn_limit = L2FIB_NUM_BUCKETS * 128; return 0; }