Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347712
b: refs/heads/master
c: db42d1a
h: refs/heads/master
v: v3
  • Loading branch information
Stanislav Kinsbursky authored and J. Bruce Fields committed Dec 10, 2012
1 parent bac08eb commit 32e1cd7
Show file tree
Hide file tree
Showing 2 changed files with 7 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: db6e182c17cb1a7069f7f8924721ce58ac05d9a3
refs/heads/master: db42d1a76a8dfcaba7a2dc9c591fa4e231db22b3
15 changes: 6 additions & 9 deletions trunk/fs/nfsd/nfssvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,9 @@ static int nfsd_init_socks(struct net *net)

static bool nfsd_up = false;

static int nfsd_startup(int nrservs)
static int nfsd_startup(int nrservs, struct net *net)
{
int ret;
struct net *net = &init_net;

if (nfsd_up)
return 0;
Expand Down Expand Up @@ -237,16 +236,14 @@ static int nfsd_startup(int nrservs)
out_net_state:
nfs4_state_shutdown();
out_lockd:
lockd_down(&init_net);
lockd_down(net);
out_racache:
nfsd_racache_shutdown();
return ret;
}

static void nfsd_shutdown(void)
static void nfsd_shutdown(struct net *net)
{
struct net *net = &init_net;

/*
* write_ports can create the server without actually starting
* any threads--if we get shut down before any threads are
Expand All @@ -264,7 +261,7 @@ static void nfsd_shutdown(void)

static void nfsd_last_thread(struct svc_serv *serv, struct net *net)
{
nfsd_shutdown();
nfsd_shutdown(net);

svc_rpcb_cleanup(serv, net);

Expand Down Expand Up @@ -468,7 +465,7 @@ nfsd_svc(int nrservs)

nfsd_up_before = nfsd_up;

error = nfsd_startup(nrservs);
error = nfsd_startup(nrservs, net);
if (error)
goto out_destroy;
error = svc_set_num_threads(nfsd_serv, NULL, nrservs);
Expand All @@ -481,7 +478,7 @@ nfsd_svc(int nrservs)
error = nfsd_serv->sv_nrthreads - 1;
out_shutdown:
if (error < 0 && !nfsd_up_before)
nfsd_shutdown();
nfsd_shutdown(net);
out_destroy:
nfsd_destroy(net); /* Release server */
out:
Expand Down

0 comments on commit 32e1cd7

Please sign in to comment.