summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-03-06 10:44:34 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-03-06 10:44:34 -0500
commit47e0a3b46b221b180ef6aeed5a492ffbe80344f0 (patch)
tree8b65c1a385488d9248771b175426e0caf3c86977
parent0ff3b1118b3fe59859c2f6c9286f1756ba5f775d (diff)
configure: Default to 16 way ecmp on compilation
If a person who is compiling FRR does not specify the multipath number on configure we are defaulting to a ecmp of 1. Let's change this to 16. In this day and age most everything supports actual ecmp. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rwxr-xr-xconfigure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fcfc4bd2fb..9ae196fcb1 100755
--- a/configure.ac
+++ b/configure.ac
@@ -765,7 +765,7 @@ AC_DEFINE_UNQUOTED([CONFIGFILE_MASK], [${enable_configfile_mask}], [Mask for con
enable_logfile_mask=${enable_logfile_mask:-0600}
AC_DEFINE_UNQUOTED([LOGFILE_MASK], [${enable_logfile_mask}], [Mask for log files])
-MPATH_NUM=1
+MPATH_NUM=16
case "${enable_multipath}" in
0)