Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Neterion: New driver: Kconfig and Makefile

- Kconfig and Makefile related changes for vxge driver.

- No changes in current submission.

- Changes from previous submission -
- Incorporated the following review comments as per Bill Flink:
- Add dependancy on INET along with PCI
- Remove dependancy on INET_LRO and add GRO support.
- Made this patch as last patch as per Ben Hutchings comments.

Signed-off-by: Sivakumar Subramani <sivakumar.subramani@neterion.com>
Signed-off-by: Rastapur Santosh <santosh.rastapur@neterion.com>
Signed-off-by: Ramkrishna Vepa <ram.vepa@neterion.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Ramkrishna Vepa and committed by
David S. Miller
f1782852 5f548a32

+25
+17
drivers/net/Kconfig
··· 2547 2547 More specific information on configuring the driver is in 2548 2548 <file:Documentation/networking/s2io.txt>. 2549 2549 2550 + config VXGE 2551 + tristate "Neterion X3100 Series 10GbE PCIe Server Adapter" 2552 + depends on PCI && INET 2553 + ---help--- 2554 + This driver supports Neterion Inc's X3100 Series 10 GbE PCIe 2555 + I/O Virtualized Server Adapter. 2556 + More specific information on configuring the driver is in 2557 + <file:Documentation/networking/vxge.txt>. 2558 + 2559 + config VXGE_DEBUG_TRACE_ALL 2560 + bool "Enabling All Debug trace statments in driver" 2561 + default n 2562 + depends on VXGE 2563 + ---help--- 2564 + Say Y here if you want to enabling all the debug trace statements in 2565 + driver. By default only few debug trace statements are enabled. 2566 + 2550 2567 config MYRI10GE 2551 2568 tristate "Myricom Myri-10G Ethernet support" 2552 2569 depends on PCI && INET
+1
drivers/net/Makefile
··· 220 220 obj-$(CONFIG_AMD8111_ETH) += amd8111e.o 221 221 obj-$(CONFIG_IBMVETH) += ibmveth.o 222 222 obj-$(CONFIG_S2IO) += s2io.o 223 + obj-$(CONFIG_VXGE) += vxge/ 223 224 obj-$(CONFIG_MYRI10GE) += myri10ge/ 224 225 obj-$(CONFIG_SMC91X) += smc91x.o 225 226 obj-$(CONFIG_SMC911X) += smc911x.o
+7
drivers/net/vxge/Makefile
··· 1 + # 2 + # Makefile for Neterion Inc's X3100 Series 10 GbE PCIe # I/O 3 + # Virtualized Server Adapter linux driver 4 + 5 + obj-$(CONFIG_VXGE) += vxge.o 6 + 7 + vxge-objs := vxge-config.o vxge-traffic.o vxge-ethtool.o vxge-main.o