From 395d5a3c1d32501545a2595b46b0ce0168bbad3d Mon Sep 17 00:00:00 2001 From: thompsa Date: Wed, 29 Feb 2012 20:58:21 +0000 Subject: [PATCH] Use a more appropriate default for the maximum number of addresses in the bridge forwarding table. PR: docs/164564 Discussed with: brueffer --- sys/net/if_bridge.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index bf00cb4cd79..a25f648dc79 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -144,10 +144,10 @@ __FBSDID("$FreeBSD$"); #define BRIDGE_RTHASH_MASK (BRIDGE_RTHASH_SIZE - 1) /* - * Maximum number of addresses to cache. + * Default maximum number of addresses to cache. */ #ifndef BRIDGE_RTABLE_MAX -#define BRIDGE_RTABLE_MAX 100 +#define BRIDGE_RTABLE_MAX 2000 #endif /* -- 2.45.0