Bug 201644 - cannot set ixgbe/ix tunables - regression
Summary: cannot set ixgbe/ix tunables - regression
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 10.2-BETA1
Hardware: Any Any
: --- Affects Many People
Assignee: Hiren Panchasara
URL:
Keywords: patch, regression
Depends on:
Blocks:
 
Reported: 2015-07-17 05:56 UTC by lampa
Modified: 2015-08-02 07:22 UTC (History)
2 users (show)

See Also:


Attachments
ix_tunable_fix_stable10.patch (1.83 KB, patch)
2015-07-17 22:15 UTC, Hiren Panchasara
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description lampa 2015-07-17 05:56:14 UTC
/boot/loader.conf:
hw.ix.rxd="4096"
hw.ix.txd="4096"
hw.ixgbe.rxd="4096" 
hw.ixgbe.txd="4096"

sysctl hw.ix.rxd
hw.ix.rxd: 2048
SHOULD BE 4096!!!

ix0: <Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 2.8.3> port 0xec00-0xec1f mem 0xf8f80000-0xf8ffffff,0xf8f7c000-0xf8f7ffff irq 32 at device 0.0 on pci5

It was working until the latest version of ixgbe driver. Tunable fetches were deleted (why?) in the last version:

TUNABLE_INT("hw.ixgbe.rxd", &ixgbe_rxd);
SYSCTL_INT(_hw_ix, OID_AUTO, rxd, CTLFLAG_RDTUN, &ixgbe_rxd, 0,
    "Number of receive descriptors per queue");

changed to:
SYSCTL_INT(_hw_ix, OID_AUTO, txd, CTLFLAG_RDTUN, &ixgbe_rxd, 0,
     "Number of receive descriptors per queue");

and it stopped working .
Comment 1 Hiren Panchasara freebsd_committer freebsd_triage 2015-07-17 21:40:57 UTC
You are right.
TUNABLE_INT() is not needed in -head but is definitely needed in stable/10.
Comment 2 Hiren Panchasara freebsd_committer freebsd_triage 2015-07-17 22:08:12 UTC
Created https://reviews.freebsd.org/D3124
Comment 3 Hiren Panchasara freebsd_committer freebsd_triage 2015-07-17 22:15:18 UTC
Created attachment 158920 [details]
ix_tunable_fix_stable10.patch
Comment 4 commit-hook freebsd_committer freebsd_triage 2015-07-18 04:50:04 UTC
A commit references this bug:

Author: hiren
Date: Sat Jul 18 04:49:37 UTC 2015
New revision: 285668
URL: https://svnweb.freebsd.org/changeset/base/285668

Log:
  Loader tunable fetching has been broken on stable/10 since ix(4) rewrite
  introduced by r280182. FreeBSD-head doesn't need TUNABLE_INT() now with
  SYSCTL_INT() but stable/10 still does.
  Note: This is a direct commit to stable/10.

  PR:		201644
  Reviewed by:	erj
  Approved by:	re (gjb)
  Sponsored by:	Limelight Networks

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