aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-11-09 13:44:06 -0500
committerJ. Bruce Fields <bfields@citi.umich.edu>2008-02-01 16:42:03 -0500
commit26808d3f10b1213bbb6e27d441be40e20ab84611 (patch)
tree38b2769d479a8cd44f2e242ef1f16b395fdf4997 /fs
parent46b25895767c606c630a97b03a895934a7a36a70 (diff)
nfsd: cleanup nfsd module initialization cleanup
Handle the failure case here with something closer to the standard kernel style. Doesn't really matter for now, but I'd like to add a few more failure cases, and then this'll help. Acked-by: NeilBrown <neilb@suse.de> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfsctl.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
index d8d50a773a5b..ecf377944286 100644
--- a/fs/nfsd/nfsctl.c
+++ b/fs/nfsd/nfsctl.c
@@ -694,16 +694,18 @@ static int __init init_nfsd(void)
694 entry->proc_fops = &exports_operations; 694 entry->proc_fops = &exports_operations;
695 } 695 }
696 retval = register_filesystem(&nfsd_fs_type); 696 retval = register_filesystem(&nfsd_fs_type);
697 if (retval) { 697 if (retval)
698 nfsd_idmap_shutdown(); 698 goto out_free_all;
699 nfsd_export_shutdown(); 699 return 0;
700 nfsd_cache_shutdown(); 700out_free_all:
701 remove_proc_entry("fs/nfs/exports", NULL); 701 nfsd_idmap_shutdown();
702 remove_proc_entry("fs/nfs", NULL); 702 nfsd_export_shutdown();
703 nfsd_stat_shutdown(); 703 nfsd_cache_shutdown();
704 nfsd_lockd_shutdown(); 704 remove_proc_entry("fs/nfs/exports", NULL);
705 nfsd4_free_slabs(); 705 remove_proc_entry("fs/nfs", NULL);
706 } 706 nfsd_stat_shutdown();
707 nfsd_lockd_shutdown();
708 nfsd4_free_slabs();
707 return retval; 709 return retval;
708} 710}
709 711