aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2006-10-02 05:17:51 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-02 10:57:18 -0400
commit3dfb4210535303bb4c2e0ff1c4fdd4dfe9b93472 (patch)
treec4f9b8f7755dc44060af914ffc720fc196ef30c6 /fs
parent6fb2b47fa16c81317ec282248e6cff521cca31c2 (diff)
[PATCH] knfsd: Check return value of lockd_up in write_ports
We should be checking the return value of lockd_up when adding a new socket to nfsd. So move the lockd_up before the svc_addsock and check the return value. The move is because lockd_down is easy, but there is no easy way to remove a recently added socket. Cc: "J. Bruce Fields" <bfields@fieldses.org> 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')
-rw-r--r--fs/nfsd/nfsctl.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
index 80e97a5ffc3f..36e8e135d5a6 100644
--- a/fs/nfsd/nfsctl.c
+++ b/fs/nfsd/nfsctl.c
@@ -454,12 +454,15 @@ static ssize_t write_ports(struct file *file, char *buf, size_t size)
454 err = nfsd_create_serv(); 454 err = nfsd_create_serv();
455 if (!err) { 455 if (!err) {
456 int proto = 0; 456 int proto = 0;
457 err = svc_addsock(nfsd_serv, fd, buf, &proto); 457 err = lockd_up(proto);
458 if (!err) {
459 err = svc_addsock(nfsd_serv, fd, buf, &proto);
460 if (err)
461 lockd_down();
462 }
458 /* Decrease the count, but don't shutdown the 463 /* Decrease the count, but don't shutdown the
459 * the service 464 * the service
460 */ 465 */
461 if (err >= 0)
462 lockd_up(proto);
463 nfsd_serv->sv_nrthreads--; 466 nfsd_serv->sv_nrthreads--;
464 } 467 }
465 return err; 468 return err;