Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ibmvscsis: Addressing Bart's comments #21

Merged
merged 1 commit into from
May 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -5387,9 +5387,9 @@ L: linux-scsi@vger.kernel.org
L: target-devel@vger.kernel.org
S: Supported
F: drivers/scsi/ibmvscsi/ibmvscsis.c
F: drivers/scsi/ibmvscsi/ibmvscsis.h
F: drivers/scsi/ibmvscsi/ibmvscsis.h
F: drivers/scsi/libsrp.h
F: drivers/scsi/libsrp.c
F: drivers/scsi/libsrp.c

IBM Power Virtual FC Device Drivers
M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Expand Down
36 changes: 21 additions & 15 deletions drivers/scsi/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -848,18 +848,21 @@ config SCSI_IBMVSCSI
module will be called ibmvscsi.

config SCSI_IBMVSCSIS
tristate "IBM Virtual SCSI Server support"
depends on PPC_PSERIES && SCSI_SRP && TARGET_CORE
help
This is the IBM POWER Virtual SCSI Target Server
tristate "IBM Virtual SCSI Server support"
depends on PPC_PSERIES && SCSI_SRP && TARGET_CORE
help
This is the IBM POWER Virtual SCSI Target Server
This driver uses the SRP protocol for communication betwen servers
guest and/or the host that run on the same server.
More information on VSCSI protocol can be found at www.power.org

The userspace component needed to initialize the driver and
documentation can be found:
The userspace component needed to initialize the driver and
documentation can be found:

https://github.com/powervm/ibmvscsis
https://github.com/powervm/ibmvscsis

To compile this driver as a module, choose M here: the
module will be called ibmvstgt.
To compile this driver as a module, choose M here: the
module will be called ibmvstgt.

config SCSI_IBMVFC
tristate "IBM Virtual FC support"
Expand Down Expand Up @@ -1743,14 +1746,17 @@ config SCSI_PM8001
based host adapters.

config SCSI_SRP
tristate "SCSI RDMA Protocol helper library"
depends on SCSI && PCI
help
This scsi srp module is a library for ibmvscsi target driver.
tristate "SCSI RDMA Protocol helper library"
depends on SCSI && PCI
help
This SCSI SRP module is a library for ibmvscsi target driver.
This module can only be used by SRP drivers that utilize synchronous
data transfers and not by SRP drivers that use asynchronous.

If you wish to use SRP target drivers, say Y.

To compile this driver as a module, choose M here. The module will
be called libsrp.
To compile this driver as a module, choose M here. The module will
be called libsrp.

config SCSI_BFA_FC
tristate "Brocade BFA Fibre Channel Support"
Expand Down
4 changes: 2 additions & 2 deletions drivers/scsi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ obj-$(CONFIG_SCSI_LASI700) += 53c700.o lasi700.o
obj-$(CONFIG_SCSI_SNI_53C710) += 53c700.o sni_53c710.o
obj-$(CONFIG_SCSI_NSP32) += nsp32.o
obj-$(CONFIG_SCSI_IPR) += ipr.o
obj-$(CONFIG_SCSI_SRP) += libsrp.o
obj-$(CONFIG_SCSI_SRP) += ibmvscsi/
obj-$(CONFIG_SCSI_IBMVSCSI) += ibmvscsi/
obj-$(CONFIG_SCSI_IBMVSCSIS) += ibmvscsi/
obj-$(CONFIG_SCSI_IBMVSCSIS) += ibmvscsi/
obj-$(CONFIG_SCSI_IBMVFC) += ibmvscsi/
obj-$(CONFIG_SCSI_HPTIOP) += hptiop.o
obj-$(CONFIG_SCSI_STEX) += stex.o
Expand Down
3 changes: 2 additions & 1 deletion drivers/scsi/ibmvscsi/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
obj-$(CONFIG_SCSI_IBMVSCSI) += ibmvscsi.o
obj-$(CONFIG_SCSI_IBMVSCSIS) += ibmvscsis.o
obj-$(CONFIG_SCSI_IBMVSCSIS) += ibmvscsis.o
obj-$(CONFIG_SCSI_IBMVFC) += ibmvfc.o
obj-$(CONFIG_SCSI_SRP) += libsrp.o
Loading