diff options
author | Tom Tucker <tom@opengridcomputing.com> | 2008-10-22 18:47:39 -0500 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@opteron.(none)> | 2008-10-22 18:47:39 -0500 |
commit | fc79d4b104f0eb8c2a7242150eaf8756ced4c344 (patch) | |
tree | b8e9974570ca194acc3ebd24ba7a864bba80c477 /net/9p/Makefile | |
parent | ea2e7996fc892e9becfed9145fdcefd59f697718 (diff) |
9p: rdma: RDMA Transport Support for 9P
This patch implements the RDMA transport provider for 9P. It allows
mounts to be performed over iWARP and IB capable network interfaces.
Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
Signed-off-by: Latchesar Ionkov <lionkov@lanl.gov>
Diffstat (limited to 'net/9p/Makefile')
-rw-r--r-- | net/9p/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/9p/Makefile b/net/9p/Makefile index 1041b7bd12e2..198a640d53a6 100644 --- a/net/9p/Makefile +++ b/net/9p/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_NET_9P) := 9pnet.o obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o +obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o 9pnet-objs := \ mod.o \ @@ -11,3 +12,6 @@ obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o 9pnet_virtio-objs := \ trans_virtio.o \ + +9pnet_rdma-objs := \ + trans_rdma.o \ |