svn commit: r220874 - head/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Tue Apr 19 22:14:18 UTC 2011


Author: np
Date: Tue Apr 19 22:14:18 2011
New Revision: 220874
URL: http://svn.freebsd.org/changeset/base/220874

Log:
  Use Toeplitz hash for RSS.
  
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Tue Apr 19 22:08:28 2011	(r220873)
+++ head/sys/dev/cxgbe/t4_main.c	Tue Apr 19 22:14:18 2011	(r220874)
@@ -378,6 +378,7 @@ t4_attach(device_t dev)
 	rc = -t4_config_glbl_rss(sc, sc->mbox,
 	    FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
 	    F_FW_RSS_GLB_CONFIG_CMD_TNLMAPEN |
+	    F_FW_RSS_GLB_CONFIG_CMD_HASHTOEPLITZ |
 	    F_FW_RSS_GLB_CONFIG_CMD_TNLALLLKP);
 	if (rc != 0) {
 		device_printf(dev,


More information about the svn-src-all mailing list