svn commit: r342586 - in stable/10: sbin/ifconfig share/man/man4

Eugene Grosbein eugen at FreeBSD.org
Sat Dec 29 00:44:13 UTC 2018


Author: eugen
Date: Sat Dec 29 00:44:11 2018
New Revision: 342586
URL: https://svnweb.freebsd.org/changeset/base/342586

Log:
  MFC r342367: ifconfig.8, lagg.4: fix documentation bug: -use_flowid
  needs to be used to force local hash computation and disable usage
  of RSS hash provided by driver.
  
  PR:		234242

Modified:
  stable/10/sbin/ifconfig/ifconfig.8
  stable/10/share/man/man4/lagg.4
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sbin/ifconfig/ifconfig.8
==============================================================================
--- stable/10/sbin/ifconfig/ifconfig.8	Sat Dec 29 00:42:11 2018	(r342585)
+++ stable/10/sbin/ifconfig/ifconfig.8	Sat Dec 29 00:44:11 2018	(r342586)
@@ -2417,7 +2417,7 @@ src/dst address for IPv4 or IPv6.
 .It Cm l4
 src/dst port for TCP/UDP/SCTP.
 .El
-.It Cm use_flowid
+.It Cm -use_flowid
 Enable local hash computation for RSS hash on the interface.
 The
 .Li loadbalance
@@ -2426,7 +2426,7 @@ and
 modes will use the RSS hash from the network card if available
 to avoid computing one, this may give poor traffic distribution
 if the hash is invalid or uses less of the protocol header information.
-.Cm use_flowid
+.Cm -use_flowid
 disables use of RSS hash from the network card.
 The default value can be set via the
 .Va net.link.lagg.default_use_flowid
@@ -2439,8 +2439,8 @@ and
 .Li 1
 means
 .Dq enabled .
-.It Cm -use_flowid
-Disable local hash computation for RSS hash on the interface.
+.It Cm use_flowid
+Use the RSS hash from the network card if available.
 .It Cm flowid_shift Ar number
 Set a shift parameter for RSS local hash computation.
 Hash is calculated by using flowid bits in a packet header mbuf

Modified: stable/10/share/man/man4/lagg.4
==============================================================================
--- stable/10/share/man/man4/lagg.4	Sat Dec 29 00:42:11 2018	(r342585)
+++ stable/10/share/man/man4/lagg.4	Sat Dec 29 00:44:11 2018	(r342586)
@@ -143,7 +143,7 @@ modes will use the RSS hash from the network card if a
 computing one, this may give poor traffic distribution if the hash is invalid
 or uses less of the protocol header information.
 Local hash computation can be forced per interface by setting the
-.Cm use_flowid
+.Cm -use_flowid
 .Xr ifconfig 8
 flag.
 The default for new interfaces is set via the


More information about the svn-src-all mailing list