mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +00:00
7e86845a03
Commit e87a911fed
("nvme-rdma: use ib_client API to detect device
removal") explains the benefits of handling device removal outside
of the CM event handler.
Sketch in an IB device removal notification mechanism that can be
used by both the client and server side RPC-over-RDMA transport
implementations.
Suggested-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
9 lines
341 B
Makefile
9 lines
341 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_SUNRPC_XPRT_RDMA) += rpcrdma.o
|
|
|
|
rpcrdma-y := transport.o rpc_rdma.o verbs.o frwr_ops.o ib_client.o \
|
|
svc_rdma.o svc_rdma_backchannel.o svc_rdma_transport.o \
|
|
svc_rdma_sendto.o svc_rdma_recvfrom.o svc_rdma_rw.o \
|
|
svc_rdma_pcl.o module.o
|
|
rpcrdma-$(CONFIG_SUNRPC_BACKCHANNEL) += backchannel.o
|