svn commit: r322549 - head/sys/dev/cxgbe/tom

Navdeep Parhar np at FreeBSD.org
Tue Aug 15 19:21:29 UTC 2017


Author: np
Date: Tue Aug 15 19:21:27 2017
New Revision: 322549
URL: https://svnweb.freebsd.org/changeset/base/322549

Log:
  cxgbe/t4_tom: Use correct name for the ISS-valid bit in options2.
  
  MFC after:	3 days
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/dev/cxgbe/tom/t4_listen.c

Modified: head/sys/dev/cxgbe/tom/t4_listen.c
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_listen.c	Tue Aug 15 17:52:37 2017	(r322548)
+++ head/sys/dev/cxgbe/tom/t4_listen.c	Tue Aug 15 19:21:27 2017	(r322549)
@@ -1042,7 +1042,7 @@ calc_opt2p(struct adapter *sc, struct port_info *pi, i
 		opt2 |= F_RX_COALESCE_VALID;
 	else {
 		opt2 |= F_T5_OPT_2_VALID;
-		opt2 |= F_CONG_CNTRL_VALID; /* OPT_2_ISS really, for T5 */
+		opt2 |= F_T5_ISS;
 	}
 	if (sc->tt.rx_coalesce)
 		opt2 |= V_RX_COALESCE(M_RX_COALESCE);


More information about the svn-src-all mailing list