···15541554 This driver supports the on-chip 1/10Gbit Ethernet controller on15551555 PA Semi's PWRficient line of chips.1556155615571557-config MLX4_EN15581558- tristate "Mellanox Technologies 10Gbit Ethernet support"15591559- depends on PCI && INET15601560- select MLX4_CORE15611561- select INET_LRO15621562- help15631563- This driver supports Mellanox Technologies ConnectX Ethernet15641564- devices.15651565-15661566-config MLX4_CORE15671567- tristate15681568- depends on PCI15691569- default n15701570-15711571-config MLX4_DEBUG15721572- bool "Verbose debugging output" if (MLX4_CORE && EXPERT)15731573- depends on MLX4_CORE15741574- default y15751575- ---help---15761576- This option causes debugging code to be compiled into the15771577- mlx4_core driver. The output can be turned on via the15781578- debug_level module parameter (which can also be set after15791579- the driver is loaded through sysfs).15801580-15811557config TEHUTI15821558 tristate "Tehuti Networks 10G Ethernet"15831559 depends on PCI
···11+#22+# Mellanox driver configuration33+#44+55+config NET_VENDOR_MELLANOX66+ bool "Mellanox devices"77+ depends on PCI && INET88+ ---help---99+ If you have a network (Ethernet) card belonging to this class, say Y1010+ and read the Ethernet-HOWTO, available from1111+ <http://www.tldp.org/docs.html#howto>.1212+1313+ Note that the answer to this question doesn't directly affect the1414+ kernel: saying N will just cause the configurator to skip all1515+ the questions about Mellanox cards. If you say Y, you will be asked1616+ for your specific card in the following questions.1717+1818+if NET_VENDOR_MELLANOX1919+2020+source "drivers/net/ethernet/mellanox/mlx4/Kconfig"2121+2222+endif # NET_VENDOR_MELLANOX
+5
drivers/net/ethernet/mellanox/Makefile
···11+#22+# Makefile for the Mellanox device drivers.33+#44+55+obj-$(CONFIG_MLX4_CORE) += mlx4/
+27
drivers/net/ethernet/mellanox/mlx4/Kconfig
···11+#22+# Mellanox driver configuration33+#44+55+config MLX4_EN66+ tristate "Mellanox Technologies 10Gbit Ethernet support"77+ depends on PCI && INET88+ select MLX4_CORE99+ select INET_LRO1010+ ---help---1111+ This driver supports Mellanox Technologies ConnectX Ethernet1212+ devices.1313+1414+config MLX4_CORE1515+ tristate1616+ depends on PCI1717+ default n1818+1919+config MLX4_DEBUG2020+ bool "Verbose debugging output" if (MLX4_CORE && EXPERT)2121+ depends on MLX4_CORE2222+ default y2323+ ---help---2424+ This option causes debugging code to be compiled into the2525+ mlx4_core driver. The output can be turned on via the2626+ debug_level module parameter (which can also be set after2727+ the driver is loaded through sysfs).