Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Aug 2017 19:21:27 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r322549 - head/sys/dev/cxgbe/tom
Message-ID:  <201708151921.v7FJLRHF003061@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708151921.v7FJLRHF003061>