Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347713
b: refs/heads/master
c: 6777436
h: refs/heads/master
i:
  347711: bac08eb
v: v3
  • Loading branch information
Stanislav Kinsbursky authored and J. Bruce Fields committed Dec 10, 2012
1 parent 32e1cd7 commit ca7a475
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 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: db42d1a76a8dfcaba7a2dc9c591fa4e231db22b3
refs/heads/master: 6777436b0f072fb20a025a73e9b67a35ad8a5451
4 changes: 2 additions & 2 deletions trunk/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 trunk/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 trunk/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 ca7a475

Please sign in to comment.