Skip to content

Commit

Permalink
IB: Add SCSI RDMA Protocol (SRP) initiator
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 7 changed files with 2,091 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/infiniband/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ source "drivers/infiniband/hw/mthca/Kconfig"

source "drivers/infiniband/ulp/ipoib/Kconfig"

source "drivers/infiniband/ulp/srp/Kconfig"

endmenu
1 change: 1 addition & 0 deletions drivers/infiniband/Makefile
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/
1 change: 1 addition & 0 deletions drivers/infiniband/ulp/srp/Kbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_INFINIBAND_SRP) += ib_srp.o
11 changes: 11 additions & 0 deletions drivers/infiniband/ulp/srp/Kconfig
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/>.

Loading

0 comments on commit aef9ec3

Please sign in to comment.