Browse Source

NFS: expand flags passed to nfs_create_rpc_client()

The nfs_create_rpc_client() function sets up an RPC client for an NFS
mount point.  Add an option that allows it to set up an RPC transport
from an unprivileged port.

Instead of having nfs_create_rpc_client()'s callers retain local
knowledge about how to set up an RPC client, create a couple of flag
arguments to control the use of RPC_CLNT_CREATE flags.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Chuck Lever 16 years ago
parent
commit
4a01b8a4ee
1 changed files with 8 additions and 4 deletions
  1. 8 4
      fs/nfs/client.c

+ 8 - 4
fs/nfs/client.c

@@ -470,7 +470,7 @@ static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
 static int nfs_create_rpc_client(struct nfs_client *clp,
 static int nfs_create_rpc_client(struct nfs_client *clp,
 				 const struct rpc_timeout *timeparms,
 				 const struct rpc_timeout *timeparms,
 				 rpc_authflavor_t flavor,
 				 rpc_authflavor_t flavor,
-				 int flags)
+				 int discrtry, int noresvport)
 {
 {
 	struct rpc_clnt		*clnt = NULL;
 	struct rpc_clnt		*clnt = NULL;
 	struct rpc_create_args args = {
 	struct rpc_create_args args = {
@@ -482,9 +482,13 @@ static int nfs_create_rpc_client(struct nfs_client *clp,
 		.program	= &nfs_program,
 		.program	= &nfs_program,
 		.version	= clp->rpc_ops->version,
 		.version	= clp->rpc_ops->version,
 		.authflavor	= flavor,
 		.authflavor	= flavor,
-		.flags		= flags,
 	};
 	};
 
 
+	if (discrtry)
+		args.flags |= RPC_CLNT_CREATE_DISCRTRY;
+	if (noresvport)
+		args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
+
 	if (!IS_ERR(clp->cl_rpcclient))
 	if (!IS_ERR(clp->cl_rpcclient))
 		return 0;
 		return 0;
 
 
@@ -623,7 +627,7 @@ static int nfs_init_client(struct nfs_client *clp,
 	 * Create a client RPC handle for doing FSSTAT with UNIX auth only
 	 * Create a client RPC handle for doing FSSTAT with UNIX auth only
 	 * - RFC 2623, sec 2.3.2
 	 * - RFC 2623, sec 2.3.2
 	 */
 	 */
-	error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX, 0);
+	error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX, 0, 0);
 	if (error < 0)
 	if (error < 0)
 		goto error;
 		goto error;
 	nfs_mark_client_ready(clp, NFS_CS_READY);
 	nfs_mark_client_ready(clp, NFS_CS_READY);
@@ -979,7 +983,7 @@ static int nfs4_init_client(struct nfs_client *clp,
 	clp->rpc_ops = &nfs_v4_clientops;
 	clp->rpc_ops = &nfs_v4_clientops;
 
 
 	error = nfs_create_rpc_client(clp, timeparms, authflavour,
 	error = nfs_create_rpc_client(clp, timeparms, authflavour,
-					RPC_CLNT_CREATE_DISCRTRY);
+				      1, 0);
 	if (error < 0)
 	if (error < 0)
 		goto error;
 		goto error;
 	memcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
 	memcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));