Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jan 2018 00:45:40 +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: r328423 - head/sys/dev/cxgbe
Message-ID:  <201801260045.w0Q0jeQR092383@repo.freebsd.org>

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



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