From: Bryan Schumaker Date: Tue, 17 Jul 2012 19:18:30 +0000 (-0400) Subject: NFS: exit_nfs_v4() shouldn't be an __exit function X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=bb6e071f845d32545e3e943058012f328a2e95ad;p=~shefty%2Frdma-dev.git NFS: exit_nfs_v4() shouldn't be an __exit function ... yet. Right now, init_nfs() is calling this function if an error is encountered when loading the nfs module. An __exit function can't be called from one declared as __init. Signed-off-by: Bryan Schumaker Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4super.c b/fs/nfs/nfs4super.c index 2af26913884..59264fb335c 100644 --- a/fs/nfs/nfs4super.c +++ b/fs/nfs/nfs4super.c @@ -352,7 +352,7 @@ out: return err; } -void __exit exit_nfs_v4(void) +void exit_nfs_v4(void) { unregister_filesystem(&nfs4_fs_type); nfs4_unregister_sysctl();