diff options
| author | Jeff Layton <jlayton@primarydata.com> | 2014-11-19 07:51:22 -0500 |
|---|---|---|
| committer | J. Bruce Fields <bfields@redhat.com> | 2014-12-09 11:22:21 -0500 |
| commit | 0b5707e4524eb817b7b02863887820d27b56910a (patch) | |
| tree | ebf0f04f6fb60e3ab8d368fff3667ec149c5e31b | |
| parent | ceff739c53a1734d820d013d7d98f932994674d2 (diff) | |
sunrpc: require svc_create callers to pass in meaningful shutdown routine
Currently all svc_create callers pass in NULL for the shutdown parm,
which then gets fixed up to be svc_rpcb_cleanup if the service uses
rpcbind.
Simplify this by instead having the the only caller that requires it
(lockd) pass in svc_rpcb_cleanup and get rid of the special casing.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
| -rw-r--r-- | fs/lockd/svc.c | 2 | ||||
| -rw-r--r-- | net/sunrpc/svc.c | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c index d1bb7ecfd201..e94c887da2d7 100644 --- a/fs/lockd/svc.c +++ b/fs/lockd/svc.c | |||
| @@ -350,7 +350,7 @@ static struct svc_serv *lockd_create_svc(void) | |||
| 350 | printk(KERN_WARNING | 350 | printk(KERN_WARNING |
| 351 | "lockd_up: no pid, %d users??\n", nlmsvc_users); | 351 | "lockd_up: no pid, %d users??\n", nlmsvc_users); |
| 352 | 352 | ||
| 353 | serv = svc_create(&nlmsvc_program, LOCKD_BUFSIZE, NULL); | 353 | serv = svc_create(&nlmsvc_program, LOCKD_BUFSIZE, svc_rpcb_cleanup); |
| 354 | if (!serv) { | 354 | if (!serv) { |
| 355 | printk(KERN_WARNING "lockd_up: create service failed\n"); | 355 | printk(KERN_WARNING "lockd_up: create service failed\n"); |
| 356 | return ERR_PTR(-ENOMEM); | 356 | return ERR_PTR(-ENOMEM); |
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 2c1c49ebd84d..a06a891012e5 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
| @@ -482,9 +482,6 @@ __svc_create(struct svc_program *prog, unsigned int bufsize, int npools, | |||
| 482 | spin_lock_init(&pool->sp_lock); | 482 | spin_lock_init(&pool->sp_lock); |
| 483 | } | 483 | } |
| 484 | 484 | ||
| 485 | if (svc_uses_rpcbind(serv) && (!serv->sv_shutdown)) | ||
| 486 | serv->sv_shutdown = svc_rpcb_cleanup; | ||
| 487 | |||
| 488 | return serv; | 485 | return serv; |
| 489 | } | 486 | } |
| 490 | 487 | ||
