Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167136
b: refs/heads/master
c: f5855fe
h: refs/heads/master
v: v3
  • Loading branch information
Trond Myklebust authored and Trond Myklebust committed Oct 6, 2009
1 parent 4e878a9 commit 05df152
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c5811dbdd26284d63c19fca618bd740dd10ad53d
refs/heads/master: f5855fecda65c1965c894915ace1e086d4925154
16 changes: 7 additions & 9 deletions trunk/fs/nfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -778,15 +778,13 @@ static int nfs_verify_server_address(struct sockaddr *addr)
* Select between a default port value and a user-specified port value.
* If a zero value is set, then autobind will be used.
*/
static void nfs_set_default_port(struct sockaddr *sap, const int parsed_port,
static void nfs_set_port(struct sockaddr *sap, int *port,
const unsigned short default_port)
{
unsigned short port = default_port;
if (*port == NFS_UNSPEC_PORT)
*port = default_port;

if (parsed_port != NFS_UNSPEC_PORT)
port = parsed_port;

rpc_set_port(sap, port);
rpc_set_port(sap, *port);
}

/*
Expand Down Expand Up @@ -1477,7 +1475,7 @@ static int nfs_try_mount(struct nfs_parsed_mount_data *args,
args->mount_server.addrlen = args->nfs_server.addrlen;
}
request.salen = args->mount_server.addrlen;
nfs_set_default_port(request.sap, args->mount_server.port, 0);
nfs_set_port(request.sap, &args->mount_server.port, 0);

/*
* Now ask the mount server to map our export path
Expand Down Expand Up @@ -1767,7 +1765,7 @@ static int nfs_validate_mount_data(void *options,
goto out_v4_not_compiled;
#endif

nfs_set_default_port(sap, args->nfs_server.port, 0);
nfs_set_port(sap, &args->nfs_server.port, 0);

nfs_set_mount_transport_protocol(args);

Expand Down Expand Up @@ -2331,7 +2329,7 @@ static int nfs4_validate_text_mount_data(void *options,
{
struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;

nfs_set_default_port(sap, args->nfs_server.port, NFS_PORT);
nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);

nfs_validate_transport_protocol(args);

Expand Down

0 comments on commit 05df152

Please sign in to comment.