diff options
author | Stanislav Kinsbursky <skinsbursky@parallels.com> | 2012-12-06 06:23:44 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-12-10 16:25:42 -0500 |
commit | 541e864f00d0062c98c1e743265b0a60cada3755 (patch) | |
tree | 05c87e9b6ba3a775c99a115a0dcde26b27d1d2b0 /fs | |
parent | 4539f14981ce02d48b212786a41c8bcfb62851b4 (diff) |
nfsd: simplify service shutdown
Function nfsd_shutdown is called from two places: nfsd_last_thread (when last
kernel thread is exiting) and nfsd_svc (in case of kthreads starting error).
When calling from nfsd_svc(), we can be sure that per-net resources are
allocated, so we don't need to check per-net nfsd_net_up boolean flag.
This allows us to remove nfsd_shutdown function at all and move check for
per-net nfsd_net_up boolean flag to nfsd_last_thread.
Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfsd/nfssvc.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index 5bb4a33211c7..2cfd9c69503e 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c | |||
@@ -281,7 +281,7 @@ static void nfsd_shutdown_net(struct net *net) | |||
281 | nfsd_shutdown_generic(); | 281 | nfsd_shutdown_generic(); |
282 | } | 282 | } |
283 | 283 | ||
284 | static void nfsd_shutdown(struct net *net) | 284 | static void nfsd_last_thread(struct svc_serv *serv, struct net *net) |
285 | { | 285 | { |
286 | struct nfsd_net *nn = net_generic(net, nfsd_net_id); | 286 | struct nfsd_net *nn = net_generic(net, nfsd_net_id); |
287 | 287 | ||
@@ -294,11 +294,6 @@ static void nfsd_shutdown(struct net *net) | |||
294 | if (!nn->nfsd_net_up) | 294 | if (!nn->nfsd_net_up) |
295 | return; | 295 | return; |
296 | nfsd_shutdown_net(net); | 296 | nfsd_shutdown_net(net); |
297 | } | ||
298 | |||
299 | static void nfsd_last_thread(struct svc_serv *serv, struct net *net) | ||
300 | { | ||
301 | nfsd_shutdown(net); | ||
302 | 297 | ||
303 | svc_rpcb_cleanup(serv, net); | 298 | svc_rpcb_cleanup(serv, net); |
304 | 299 | ||
@@ -530,7 +525,7 @@ nfsd_svc(int nrservs, struct net *net) | |||
530 | error = nn->nfsd_serv->sv_nrthreads - 1; | 525 | error = nn->nfsd_serv->sv_nrthreads - 1; |
531 | out_shutdown: | 526 | out_shutdown: |
532 | if (error < 0 && !nfsd_up_before) | 527 | if (error < 0 && !nfsd_up_before) |
533 | nfsd_shutdown(net); | 528 | nfsd_shutdown_net(net); |
534 | out_destroy: | 529 | out_destroy: |
535 | nfsd_destroy(net); /* Release server */ | 530 | nfsd_destroy(net); /* Release server */ |
536 | out: | 531 | out: |