dect
/
linux-2.6
Archived
13
0
Fork 0

nfsd: clean up nfsd_create_serv error handling

There doesn't seem to be any need to reset the nfssvc_boot time if the
nfsd startup failed.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
Jeff Layton 2010-07-21 16:40:08 -04:00 committed by J. Bruce Fields
parent 0cd14a061e
commit 628b368728
1 changed files with 2 additions and 3 deletions

View File

@ -292,10 +292,9 @@ int nfsd_create_serv(void)
nfsd_serv = svc_create_pooled(&nfsd_program, nfsd_max_blksize,
nfsd_last_thread, nfsd, THIS_MODULE);
if (nfsd_serv == NULL)
err = -ENOMEM;
else
set_max_drc();
return -ENOMEM;
set_max_drc();
do_gettimeofday(&nfssvc_boot); /* record boot time */
return err;
}