From: Fabian Frederick <fabf@xxxxxxxxx> we can safely destroy vc_mutex at the end of umount process. Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Jan Harkes <jaharkes@xxxxxxxxxx> --- fs/coda/inode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/coda/inode.c b/fs/coda/inode.c index 4c512572f257..1aba71eec385 100644 --- a/fs/coda/inode.c +++ b/fs/coda/inode.c @@ -242,6 +242,7 @@ static void coda_put_super(struct super_block *sb) vcp->vc_sb = NULL; sb->s_fs_info = NULL; mutex_unlock(&vcp->vc_mutex); + mutex_destroy(&vcp->vc_mutex); pr_info("Bye bye.\n"); } -- 2.20.1