forked from Minki/linux
2e8c12e1b7
There are two entirely separate modules under xprtrdma/ and there's no reason that enabling one should automatically enable the other. Add config options for each one so they can be enabled/disabled separately. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
9 lines
256 B
Makefile
9 lines
256 B
Makefile
obj-$(CONFIG_SUNRPC_XPRT_RDMA_CLIENT) += xprtrdma.o
|
|
|
|
xprtrdma-y := transport.o rpc_rdma.o verbs.o
|
|
|
|
obj-$(CONFIG_SUNRPC_XPRT_RDMA_SERVER) += svcrdma.o
|
|
|
|
svcrdma-y := svc_rdma.o svc_rdma_transport.o \
|
|
svc_rdma_marshal.o svc_rdma_sendto.o svc_rdma_recvfrom.o
|