aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p/Makefile
diff options
context:
space:
mode:
authorTom Tucker <tom@opengridcomputing.com>2008-10-22 19:47:39 -0400
committerEric Van Hensbergen <ericvh@opteron.(none)>2008-10-22 19:47:39 -0400
commitfc79d4b104f0eb8c2a7242150eaf8756ced4c344 (patch)
treeb8e9974570ca194acc3ebd24ba7a864bba80c477 /net/9p/Makefile
parentea2e7996fc892e9becfed9145fdcefd59f697718 (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/Makefile4
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 @@
1obj-$(CONFIG_NET_9P) := 9pnet.o 1obj-$(CONFIG_NET_9P) := 9pnet.o
2obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o 2obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
3obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o
3 4
49pnet-objs := \ 59pnet-objs := \
5 mod.o \ 6 mod.o \
@@ -11,3 +12,6 @@ obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
11 12
129pnet_virtio-objs := \ 139pnet_virtio-objs := \
13 trans_virtio.o \ 14 trans_virtio.o \
15
169pnet_rdma-objs := \
17 trans_rdma.o \