Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=46b25895767c606c630a97b03a895934a7a36a70
Commit:     46b25895767c606c630a97b03a895934a7a36a70
Parent:     ca2a05aa7c72309ee65164c78fa2be7a5038215e
Author:     J. Bruce Fields <[EMAIL PROTECTED]>
AuthorDate: Fri Nov 9 12:31:55 2007 -0500
Committer:  J. Bruce Fields <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 16:42:03 2008 -0500

    knfsd: cleanup nfsd4 properly on module init failure
    
    We forgot to shut down the nfs4 state and idmapping code in this case.
    
    Acked-by: NeilBrown <[EMAIL PROTECTED]>
    Signed-off-by: J. Bruce Fields <[EMAIL PROTECTED]>
---
 fs/nfsd/nfsctl.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
index 77dc989..d8d50a7 100644
--- a/fs/nfsd/nfsctl.c
+++ b/fs/nfsd/nfsctl.c
@@ -695,12 +695,14 @@ static int __init init_nfsd(void)
        }
        retval = register_filesystem(&nfsd_fs_type);
        if (retval) {
+               nfsd_idmap_shutdown();
                nfsd_export_shutdown();
                nfsd_cache_shutdown();
                remove_proc_entry("fs/nfs/exports", NULL);
                remove_proc_entry("fs/nfs", NULL);
                nfsd_stat_shutdown();
                nfsd_lockd_shutdown();
+               nfsd4_free_slabs();
        }
        return retval;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to