mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ffe1f0df58
Bi-directional RPC support means code in svcrdma.ko invokes a bit of
code in xprtrdma.ko, and vice versa. To avoid loader/linker loops,
merge the server and client side modules together into a single
module.
When backchannel capabilities are added, the combined module will
register all needed transport capabilities so that Upper Layer
consumers automatically have everything needed to create a
bi-directional transport connection.
Module aliases are added for backwards compatibility with user
space, which still may expect svcrdma.ko or xprtrdma.ko to be
present.
This commit reverts commit 2e8c12e1b7
("xprtrdma: add separate
Kconfig options for NFSoRDMA client and server support") and
provides a single CONFIG option for enabling the new module.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
7 lines
235 B
Makefile
7 lines
235 B
Makefile
obj-$(CONFIG_SUNRPC_XPRT_RDMA) += rpcrdma.o
|
|
|
|
rpcrdma-y := transport.o rpc_rdma.o verbs.o \
|
|
fmr_ops.o frwr_ops.o physical_ops.o \
|
|
svc_rdma.o svc_rdma_transport.o \
|
|
svc_rdma_marshal.o svc_rdma_sendto.o svc_rdma_recvfrom.o \
|
|
module.o
|