forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RDMA/nes: Add a driver for NetEffect RNICs
Add a standard NIC and RDMA/iWARP driver for NetEffect 1/10Gb ethernet adapters. Signed-off-by: Glenn Streiff <[email protected]> Signed-off-by: Roland Dreier <[email protected]>
- Loading branch information
Glenn Streiff
authored and
Roland Dreier
committed
Feb 5, 2008
1 parent
2c78853
commit 3c2d774
Showing
17 changed files
with
16,561 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2681,6 +2681,16 @@ M: [email protected] | |
L: [email protected] | ||
S: Maintained | ||
|
||
NETEFFECT IWARP RNIC DRIVER (IW_NES) | ||
P: Faisal Latif | ||
M: [email protected] | ||
P: Glenn Streiff | ||
M: [email protected] | ||
L: [email protected] | ||
W: http://www.neteffect.com | ||
S: Supported | ||
F: drivers/infiniband/hw/nes/ | ||
|
||
NETEM NETWORK EMULATOR | ||
P: Stephen Hemminger | ||
M: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
config INFINIBAND_NES | ||
tristate "NetEffect RNIC Driver" | ||
depends on PCI && INET && INFINIBAND | ||
select LIBCRC32C | ||
---help--- | ||
This is a low-level driver for NetEffect RDMA enabled | ||
Network Interface Cards (RNIC). | ||
|
||
config INFINIBAND_NES_DEBUG | ||
bool "Verbose debugging output" | ||
depends on INFINIBAND_NES | ||
default n | ||
---help--- | ||
This option causes the NetEffect RNIC driver to produce debug | ||
messages. Select this if you are developing the driver | ||
or trying to diagnose a problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
obj-$(CONFIG_INFINIBAND_NES) += iw_nes.o | ||
|
||
iw_nes-objs := nes.o nes_hw.o nes_nic.o nes_utils.o nes_verbs.o nes_cm.o |
Oops, something went wrong.