533d1daea8
Several subsystems depend on INFINIBAND_ADDR_TRANS, which in turn depends
on INFINIBAND. However, when with CONFIG_INIFIBAND=m, this leads to a
link error when another driver using it is built-in. The
INFINIBAND_ADDR_TRANS dependency is insufficient here as this is
a 'bool' symbol that does not force anything to be a module in turn.
fs/cifs/smbdirect.o: In function `smbd_disconnect_rdma_work':
smbdirect.c:(.text+0x1e4): undefined reference to `rdma_disconnect'
net/9p/trans_rdma.o: In function `rdma_request':
trans_rdma.c:(.text+0x7bc): undefined reference to `rdma_disconnect'
net/9p/trans_rdma.o: In function `rdma_destroy_trans':
trans_rdma.c:(.text+0x830): undefined reference to `ib_destroy_qp'
trans_rdma.c:(.text+0x858): undefined reference to `ib_dealloc_pd'
Fixes: 9533b292a7
("IB: remove redundant INFINIBAND kconfig dependencies")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Greg Thelen <gthelen@google.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
13 lines
610 B
Plaintext
13 lines
610 B
Plaintext
config INFINIBAND_SRPT
|
|
tristate "InfiniBand SCSI RDMA Protocol target support"
|
|
depends on INFINIBAND && INFINIBAND_ADDR_TRANS && TARGET_CORE
|
|
---help---
|
|
|
|
Support for the SCSI RDMA Protocol (SRP) Target driver. The
|
|
SRP protocol is a protocol that allows an initiator to access
|
|
a block storage device on another host (target) over a network
|
|
that supports the RDMA protocol. Currently the RDMA protocol is
|
|
supported by InfiniBand and by iWarp network hardware. More
|
|
information about the SRP protocol can be found on the website
|
|
of the INCITS T10 technical committee (http://www.t10.org/).
|