| # |
| # CDDL HEADER START |
| # |
| # The contents of this file are subject to the terms of the |
| # Common Development and Distribution License (the "License"). |
| # You may not use this file except in compliance with the License. |
| # |
| # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| # or http://www.opensolaris.org/os/licensing. |
| # See the License for the specific language governing permissions |
| # and limitations under the License. |
| # |
| # When distributing Covered Code, include this CDDL HEADER in each |
| # file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| # If applicable, add the following below this CDDL HEADER, with the |
| # fields enclosed by brackets "[]" replaced with your own identifying |
| # information: Portions Copyright [yyyy] [name of copyright owner] |
| # |
| # CDDL HEADER END |
| # |
| # |
| # Copyright(c) 2007-2008 Intel Corporation. All rights reserved. |
| # |
| # Copyright 2010 Sun Microsystems, Inc. All rights reserved. |
| # Use is subject to license terms. |
| # |
| # Copyright (c) 2013 Saso Kiselkov. All rights reserved. |
| # Copyright 2016 OmniTI Computer Consulting, Inc. All rights reserved. |
| # |
| # |
| # Driver.conf file for Intel 10GbE PCIE NIC Driver (ixgbe) |
| # |
| # -------------------- Jumbo Frame -------------------- |
| # default_mtu |
| # The size of the default MTU (payload without the ethernet header) |
| # Allowed values: 1500 - 16366 (for Intel 82598 Ethernet controller) |
| # 1500 - 15500 (for Intel 82599, X540, X550 Ethernet controller) |
| # Default value: 1500 |
| # |
| # default_mtu = 1500; |
| # |
| # -------------------- Flow Control -------------------- |
| # flow_control |
| # Ethernet flow control |
| # Allowed values: 0 - Disable |
| # 1 - Receive only |
| # 2 - Transmit only |
| # 3 - Receive and transmit |
| # default value: 0 |
| # |
| # flow_control = 3; |
| # |
| # -------------------- Transmit/Receive Queues -------------------- |
| # |
| # tx_ring_size |
| # The number of the transmit descriptors per transmit queue |
| # Allowed values: 64 - 4096 |
| # Default value: 1024 |
| # |
| # rx_ring_size |
| # The number of the receive descriptors per receive queue |
| # Allowed values: 64 - 4096 |
| # Default value: 1024 |
| # |
| # mr_enable |
| # Enable multiple tx queues and rx queues |
| # Allowed values: 0 - 1 |
| # Default value: 1 |
| # |
| # rx_group_number |
| # The number of the receive groups |
| # Allowed values: 1 - 16 (for Intel 82598 10Gb ethernet controller) |
| # Allowed values: 1 - 64 (for Intel 82599, X540, X550 10Gb ethernet controller) |
| # Default value: 1 |
| # |
| # allow_unsupported_sfp |
| # Allow use of unsupported (non-Intel) SFP modules in adapters with |
| # pluggable optics |
| # Allowed values: 0 - 1 |
| # Default value: 0 |
| # |
| # -------- How to set parameters for a particular interface --------- |
| # The example below shows how to locate the device path and set a parameter |
| # for a particular ixgbe interface. (Using flow_control as an example) |
| # |
| # Use the following command to find out the device paths for ixgbe, |
| # more /etc/path_to_inst | grep ixgbe |
| # |
| # For example, if you see, |
| # "/pci@7b,0/pci10de,5d@e/pci8086,a15f@0" 0 "ixgbe" |
| # "/pci@7b,0/pci10de,5d@e/pci8086,a15f@0,1" 1 "ixgbe" |
| # |
| # name = "pciex8086,10c6" parent = "/pci@0,0/pci10de,\<pci10de\>5d@e" unit-address = "0" |
| # flow_control = 1; |
| # name = "pciex8086,10c6" parent = "/pci@0,0/\<pci\>pci10de,5d@e" unit-address = "1" |
| # flow_control = 3; |