-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IB: Add SCSI RDMA Protocol (SRP) initiator
Add an InfiniBand SCSI RDMA Protocol (SRP) initiator. This driver is used to talk talk to InfiniBand SRP targets (storage devices). Signed-off-by: Roland Dreier <rolandd@cisco.com>
- Loading branch information
Roland Dreier
committed
Nov 2, 2005
1 parent
89fbb69
commit aef9ec3
Showing
7 changed files
with
2,091 additions
and
0 deletions.
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
obj-$(CONFIG_INFINIBAND) += core/ | ||
obj-$(CONFIG_INFINIBAND_MTHCA) += hw/mthca/ | ||
obj-$(CONFIG_INFINIBAND_IPOIB) += ulp/ipoib/ | ||
obj-$(CONFIG_INFINIBAND_SRP) += ulp/srp/ |
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 @@ | ||
obj-$(CONFIG_INFINIBAND_SRP) += ib_srp.o |
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,11 @@ | ||
config INFINIBAND_SRP | ||
tristate "InfiniBand SCSI RDMA Protocol" | ||
depends on INFINIBAND && SCSI | ||
---help--- | ||
Support for the SCSI RDMA Protocol over InfiniBand. This | ||
allows you to access storage devices that speak SRP over | ||
InfiniBand. | ||
|
||
The SRP protocol is defined by the INCITS T10 technical | ||
committee. See <http://www.t10.org/>. | ||
|
Oops, something went wrong.