summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--UPDATING8
-rw-r--r--sys/net/if_lagg.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index e7dadfb..ca5b484 100644
--- a/UPDATING
+++ b/UPDATING
@@ -16,6 +16,14 @@ from older versions of FreeBSD, try WITHOUT_CLANG and WITH_GCC to bootstrap to
the tip of head, and then rebuild without this option. The bootstrap process
from older version of current across the gcc/clang cutover is a bit fragile.
+20180409:
+ The use of RSS hash from the network card aka flowid has been
+ disabled by default for lagg(4) as it's currently incompatible with
+ the lacp and loadbalance protocols.
+
+ This can be re-enabled by setting the following in loader.conf:
+ net.link.lagg.default_use_flowid="1"
+
20180331:
Clang, llvm, lld, lldb, compiler-rt and libc++ have been upgraded to
6.0.0. Please see the 20141231 entry below for information about
diff --git a/sys/net/if_lagg.c b/sys/net/if_lagg.c
index 2883de0..cb65332 100644
--- a/sys/net/if_lagg.c
+++ b/sys/net/if_lagg.c
@@ -238,7 +238,7 @@ SYSCTL_INT(_net_link_lagg, OID_AUTO, failover_rx_all, CTLFLAG_RW | CTLFLAG_VNET,
"Accept input from any interface in a failover lagg");
/* Default value for using flowid */
-static VNET_DEFINE(int, def_use_flowid) = 1;
+static VNET_DEFINE(int, def_use_flowid) = 0;
#define V_def_use_flowid VNET(def_use_flowid)
SYSCTL_INT(_net_link_lagg, OID_AUTO, default_use_flowid, CTLFLAG_RWTUN,
&VNET_NAME(def_use_flowid), 0,
OpenPOWER on IntegriCloud