Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jul 2015 00:31:14 +0000 (UTC)
From:      Hiren Panchasara <hiren@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r285731 - stable/10/sys/dev/ixgbe
Message-ID:  <201507210031.t6L0VEKZ043473@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hiren
Date: Tue Jul 21 00:31:13 2015
New Revision: 285731
URL: https://svnweb.freebsd.org/changeset/base/285731

Log:
  Fix a typo in r285668. Replace hw.ixgbe.* with correct hw.ix.* for a couple of
  sysctls.
  
  Approved by:	re (gjb)
  Sponsored by:	Limelight Networks

Modified:
  stable/10/sys/dev/ixgbe/if_ix.c

Modified: stable/10/sys/dev/ixgbe/if_ix.c
==============================================================================
--- stable/10/sys/dev/ixgbe/if_ix.c	Mon Jul 20 23:24:25 2015	(r285730)
+++ stable/10/sys/dev/ixgbe/if_ix.c	Tue Jul 21 00:31:13 2015	(r285731)
@@ -248,7 +248,7 @@ SYSCTL_INT(_hw_ix, OID_AUTO, max_interru
 
 /* How many packets rxeof tries to clean at a time */
 static int ixgbe_rx_process_limit = 256;
-TUNABLE_INT("hw.ixgbe.rx_process_limit", &ixgbe_rx_process_limit);
+TUNABLE_INT("hw.ix.rx_process_limit", &ixgbe_rx_process_limit);
 SYSCTL_INT(_hw_ix, OID_AUTO, rx_process_limit, CTLFLAG_RDTUN,
     &ixgbe_rx_process_limit, 0,
     "Maximum number of received packets to process at a time,"
@@ -256,7 +256,7 @@ SYSCTL_INT(_hw_ix, OID_AUTO, rx_process_
 
 /* How many packets txeof tries to clean at a time */
 static int ixgbe_tx_process_limit = 256;
-TUNABLE_INT("hw.ixgbe.tx_process_limit", &ixgbe_tx_process_limit);
+TUNABLE_INT("hw.ix.tx_process_limit", &ixgbe_tx_process_limit);
 SYSCTL_INT(_hw_ix, OID_AUTO, tx_process_limit, CTLFLAG_RDTUN,
     &ixgbe_tx_process_limit, 0,
     "Maximum number of sent packets to process at a time,"



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