Lines Matching +full:in +full:- +full:built
17 The NFS/RDMA client was first included in Linux 2.6.24. The NFS/RDMA server
18 was first included in the following release, Linux 2.6.25.
20 In our testing, we have obtained excellent performance results (full 10Gbit
29 nfs-rdma-devel@lists.sourceforge.net mailing list.
37 - Install an RDMA device
39 Any device supported by the drivers in drivers/infiniband/hw is acceptable.
41 Testing has been performed using several Mellanox-based IB cards, the
44 - Install a Linux distribution and tools
50 The procedures described in this document have been tested with
53 - Install nfs-utils-1.1.2 or greater on the client
55 An NFS/RDMA mount point can be obtained by using the mount.nfs command in
56 nfs-utils-1.1.2 or greater (nfs-utils-1.1.1 was the first nfs-utils
58 recommend using nfs-utils-1.1.2 or greater). To see which version of
61 .. code-block:: sh
63 $ /sbin/mount.nfs -V
66 you should install the latest version of nfs-utils.
77 .. code-block:: sh
79 $ ./configure --disable-gss --disable-nfsv4
81 To build nfs-utils you will need the tcp_wrappers package installed. For
84 After building the nfs-utils package, there will be a mount.nfs binary in
92 .. code-block:: sh
96 In this location, mount.nfs will be invoked automatically for NFS mounts
100 mount.nfs and therefore nfs-utils-1.1.2 or greater is only needed
102 nfs-utils on the server. Furthermore, only the mount.nfs command from
103 nfs-utils-1.1.2 is needed on the client.
105 - Install a Linux kernel with NFS/RDMA
107 The NFS/RDMA client and server are both included in the mainline Linux
111 Download the sources and place them in an appropriate location.
113 - Configure the RDMA stack
116 Device Drivers -> InfiniBand support, update the kernel configuration
123 If you are using InfiniBand, be sure to enable IP-over-InfiniBand support.
125 - Configure the NFS client and server
129 options can be found under File Systems -> Network File Systems.
131 - Build, install, reboot
138 #. N if either SUNRPC or INFINIBAND are N, in this case the NFS/RDMA client
139 and server will not be built
142 in this case the NFS/RDMA client and server will be built as modules
144 #. Y if both SUNRPC and INFINIBAND are Y, in this case the NFS/RDMA client
145 and server will be built into the kernel
148 the NFS/RDMA client and server will be built.
157 In particular, it is a good idea to verify that the RDMA stack
161 - Check RDMA Setup
163 If you built the RDMA components as modules, load them at
167 .. code-block:: sh
179 .. code-block:: sh
189 .. code-block:: sh
200 - Check NFS Setup
212 -----------------------
214 - On the server system, configure the /etc/exports file and start the NFS/RDMA server.
229 --------------------------
231 - Load and configure the RDMA drivers
235 .. code-block:: sh
245 - Start the NFS server
247 If the NFS/RDMA server was built as a module (CONFIG_SUNRPC_XPRT_RDMA=m in
250 .. code-block:: sh
254 Regardless of how the server was built (module or built-in), start the
257 .. code-block:: sh
263 .. code-block:: sh
269 .. code-block:: sh
273 - On the client system
275 If the NFS/RDMA client was built as a module (CONFIG_SUNRPC_XPRT_RDMA=m in
278 .. code-block:: sh
282 Regardless of how the client was built (module or built-in), use this
285 .. code-block:: sh
287 $ mount -o rdma,port=20049 <IPoIB-server-name-or-address>:/<export> /mnt