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

Navdeep Parhar np at FreeBSD.org
Fri Jan 26 00:45:41 UTC 2018


Author: np
Date: Fri Jan 26 00:45:40 2018
New Revision: 328423
URL: https://svnweb.freebsd.org/changeset/base/328423

Log:
  cxgbe(4): Accept old names of a couple of tunables.

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

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Fri Jan 26 00:35:33 2018	(r328422)
+++ head/sys/dev/cxgbe/t4_main.c	Fri Jan 26 00:45:40 2018	(r328423)
@@ -355,10 +355,12 @@ TUNABLE_INT("hw.cxgbe.nnmrxq_vi", &t4_nnmrxq_vi);
 #define TMR_IDX 1
 int t4_tmr_idx = TMR_IDX;
 TUNABLE_INT("hw.cxgbe.holdoff_timer_idx", &t4_tmr_idx);
+TUNABLE_INT("hw.cxgbe.holdoff_timer_idx_10G", &t4_tmr_idx);	/* Old name */
 
 #define PKTC_IDX (-1)
 int t4_pktc_idx = PKTC_IDX;
 TUNABLE_INT("hw.cxgbe.holdoff_pktc_idx", &t4_pktc_idx);
+TUNABLE_INT("hw.cxgbe.holdoff_pktc_idx_10G", &t4_pktc_idx);	/* Old name */
 
 /*
  * Size (# of entries) of each tx and rx queue.


More information about the svn-src-all mailing list