svn commit: r233085 - in stable/8/sys: i386/conf net
Christian Brueffer
brueffer at FreeBSD.org
Sat Mar 17 12:15:36 UTC 2012
Author: brueffer
Date: Sat Mar 17 12:15:35 2012
New Revision: 233085
URL: http://svn.freebsd.org/changeset/base/233085
Log:
MFC: r232315
Use a more appropriate default for the maximum number of addresses in the
bridge forwarding table.
Modified:
stable/8/sys/net/if_bridge.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/boot/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/e1000/ (props changed)
stable/8/sys/i386/conf/XENHVM (props changed)
Modified: stable/8/sys/net/if_bridge.c
==============================================================================
--- stable/8/sys/net/if_bridge.c Sat Mar 17 12:11:53 2012 (r233084)
+++ stable/8/sys/net/if_bridge.c Sat Mar 17 12:15:35 2012 (r233085)
@@ -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
/*
More information about the svn-src-stable-8
mailing list