diff options
author | NeilBrown <neilb@suse.de> | 2006-10-04 05:15:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:15 -0400 |
commit | 5680c44632053a6c9464bca43083f01776d318da (patch) | |
tree | 220f7bcb0168972bbc2ce804074f42b5470a1e15 /fs/nfsd/nfsctl.c | |
parent | cda9e0cd8a6b30ccc32edced066c378fbd87003d (diff) |
[PATCH] knfsd: Fixed handling of lockd fail when adding nfsd socket
Arrgg.. We cannot 'lockd_up' before 'svc_addsock' as we don't know the
protocol yet.... So switch it around again and save the name of the created
sockets so that it can be closed if lock_up fails.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/nfsd/nfsctl.c')
-rw-r--r-- | fs/nfsd/nfsctl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index f85472dda463..6c2ddfed2cfc 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c | |||
@@ -523,11 +523,11 @@ static ssize_t write_ports(struct file *file, char *buf, size_t size) | |||
523 | err = nfsd_create_serv(); | 523 | err = nfsd_create_serv(); |
524 | if (!err) { | 524 | if (!err) { |
525 | int proto = 0; | 525 | int proto = 0; |
526 | err = lockd_up(proto); | 526 | err = svc_addsock(nfsd_serv, fd, buf, &proto); |
527 | if (!err) { | 527 | if (err >= 0) { |
528 | err = svc_addsock(nfsd_serv, fd, buf, &proto); | 528 | err = lockd_up(proto); |
529 | if (err) | 529 | if (err < 0) |
530 | lockd_down(); | 530 | svc_sock_names(buf+strlen(buf)+1, nfsd_serv, buf); |
531 | } | 531 | } |
532 | /* Decrease the count, but don't shutdown the | 532 | /* Decrease the count, but don't shutdown the |
533 | * the service | 533 | * the service |
@@ -536,7 +536,7 @@ static ssize_t write_ports(struct file *file, char *buf, size_t size) | |||
536 | nfsd_serv->sv_nrthreads--; | 536 | nfsd_serv->sv_nrthreads--; |
537 | unlock_kernel(); | 537 | unlock_kernel(); |
538 | } | 538 | } |
539 | return err; | 539 | return err < 0 ? err : 0; |
540 | } | 540 | } |
541 | if (buf[0] == '-') { | 541 | if (buf[0] == '-') { |
542 | char *toclose = kstrdup(buf+1, GFP_KERNEL); | 542 | char *toclose = kstrdup(buf+1, GFP_KERNEL); |