Skip to content

Commit

Permalink
nfsd: pass net to nfsd_create_serv()
Browse files Browse the repository at this point in the history
Precursor patch. Hard-coded "init_net" will be replaced by proper one in
future.

Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
  • Loading branch information
Stanislav Kinsbursky authored and J. Bruce Fields committed Dec 10, 2012
1 parent db42d1a commit 6777436
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions fs/nfsd/nfsctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ static ssize_t __write_ports_addfd(char *buf)
if (err != 0 || fd < 0)
return -EINVAL;

err = nfsd_create_serv();
err = nfsd_create_serv(net);
if (err != 0)
return err;

Expand Down Expand Up @@ -696,7 +696,7 @@ static ssize_t __write_ports_addxprt(char *buf)
if (port < 1 || port > USHRT_MAX)
return -EINVAL;

err = nfsd_create_serv();
err = nfsd_create_serv(net);
if (err != 0)
return err;

Expand Down
2 changes: 1 addition & 1 deletion fs/nfsd/nfsd.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ enum vers_op {NFSD_SET, NFSD_CLEAR, NFSD_TEST, NFSD_AVAIL };
int nfsd_vers(int vers, enum vers_op change);
int nfsd_minorversion(u32 minorversion, enum vers_op change);
void nfsd_reset_versions(void);
int nfsd_create_serv(void);
int nfsd_create_serv(struct net *net);

extern int nfsd_max_blksize;

Expand Down
5 changes: 2 additions & 3 deletions fs/nfsd/nfssvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,9 @@ static int nfsd_get_default_max_blksize(void)
return ret;
}

int nfsd_create_serv(void)
int nfsd_create_serv(struct net *net)
{
int error;
struct net *net = &init_net;

WARN_ON(!mutex_is_locked(&nfsd_mutex));
if (nfsd_serv) {
Expand Down Expand Up @@ -459,7 +458,7 @@ nfsd_svc(int nrservs)
if (nrservs == 0 && nfsd_serv == NULL)
goto out;

error = nfsd_create_serv();
error = nfsd_create_serv(net);
if (error)
goto out;

Expand Down

0 comments on commit 6777436

Please sign in to comment.