From 17962b82afb68ca8e6b0d3f432d36c6c7c4980ea Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Wed, 13 Oct 2010 13:01:51 -0400 Subject: [PATCH] mount.nfs: mountproto does not support RDMA Clean up. Our client does not support the MNT protocol on RDMA. nfs_mount_protocol() isn't invoked for RDMA mounts (they are shunted off before nfs_options2pmap() is invoked). But in case it ever is, it should return the expected response. Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- utils/mount/network.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utils/mount/network.c b/utils/mount/network.c index 1759c1c..5b515c3 100644 --- a/utils/mount/network.c +++ b/utils/mount/network.c @@ -1521,7 +1521,11 @@ nfs_mount_protocol(struct mount_options *options, unsigned long *protocol) * set @protocol to zero. The pmap protocol value will * be filled in later by an rpcbind query in this case. */ - return nfs_nfs_protocol(options, protocol); + if (!nfs_nfs_protocol(options, protocol)) + return 0; + if (*protocol == NFSPROTO_RDMA) + *protocol = IPPROTO_TCP; + return 1; } /* -- 2.39.2