-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xprtrdma: add separate Kconfig options for NFSoRDMA client and server…
… support 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>
- Loading branch information
Jeff Layton
authored and
J. Bruce Fields
committed
Mar 28, 2014
1 parent
7e4359e
commit 2e8c12e
Showing
3 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
obj-$(CONFIG_SUNRPC_XPRT_RDMA) += xprtrdma.o | ||
obj-$(CONFIG_SUNRPC_XPRT_RDMA_CLIENT) += xprtrdma.o | ||
|
||
xprtrdma-y := transport.o rpc_rdma.o verbs.o | ||
|
||
obj-$(CONFIG_SUNRPC_XPRT_RDMA) += svcrdma.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 |