diff options
author | sbruno <sbruno@FreeBSD.org> | 2016-02-11 16:35:16 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2016-02-11 16:35:16 +0000 |
commit | 0c758e8c2736b450efa6576a9b55eaac38468d8c (patch) | |
tree | e7c200e3d543a7ddf49ffbe8e8521c21c1e50a1f /sys/dev | |
parent | 15873ac96fcc4e81a25d35e735a1fbae9d727360 (diff) | |
download | FreeBSD-src-0c758e8c2736b450efa6576a9b55eaac38468d8c.zip FreeBSD-src-0c758e8c2736b450efa6576a9b55eaac38468d8c.tar.gz |
Revert sysctl description change introduced in r295008 to correctly
reflect the maximum number of queues supported (8) by this driver.
Submitted by: jwd
Reviewed by: erj
Approved by: re (gjb)
Sponsored by: Intel Corporation and Limelight Networks
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ixgbe/if_ix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c index 111e731..acdef4d 100644 --- a/sys/dev/ixgbe/if_ix.c +++ b/sys/dev/ixgbe/if_ix.c @@ -320,7 +320,8 @@ SYSCTL_INT(_hw_ix, OID_AUTO, enable_msix, CTLFLAG_RDTUN, &ixgbe_enable_msix, 0, static int ixgbe_num_queues = 0; TUNABLE_INT("hw.ix.num_queues", &ixgbe_num_queues); SYSCTL_INT(_hw_ix, OID_AUTO, num_queues, CTLFLAG_RDTUN, &ixgbe_num_queues, 0, - "Number of queues to configure, 0 indicates autoconfigure"); + "Number of queues to configure up to a mximum of 8," + "0 indicates autoconfigure"); /* ** Number of TX descriptors per ring, |