Message ID | f436f68908c467c5663bc6a9251b52cd7b95d2a5.1558117389.git.jaharkes@cs.cmu.edu (mailing list archive) |
---|---|
State | New, archived |
Headers | show
Return-Path: <linux-fsdevel-owner@kernel.org> Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5479A14C0 for <patchwork-linux-fsdevel@patchwork.kernel.org>; Fri, 17 May 2019 18:37:13 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 46FF8283C9 for <patchwork-linux-fsdevel@patchwork.kernel.org>; Fri, 17 May 2019 18:37:13 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3B77F28420; Fri, 17 May 2019 18:37:13 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E94B8283C9 for <patchwork-linux-fsdevel@patchwork.kernel.org>; Fri, 17 May 2019 18:37:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729402AbfEQShL (ORCPT <rfc822;patchwork-linux-fsdevel@patchwork.kernel.org>); Fri, 17 May 2019 14:37:11 -0400 Received: from hurricane.elijah.cs.cmu.edu ([128.2.209.191]:57644 "EHLO hurricane.elijah.cs.cmu.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729376AbfEQShC (ORCPT <rfc822;linux-fsdevel@vger.kernel.org>); Fri, 17 May 2019 14:37:02 -0400 Received: from jaharkes by hurricane.elijah.cs.cmu.edu with local (Exim 4.92) (envelope-from <jaharkes@hurricane.elijah.cs.cmu.edu>) id 1hRhj3-0000pl-C4; Fri, 17 May 2019 14:37:01 -0400 From: Jan Harkes <jaharkes@cs.cmu.edu> To: Andrew Morton <akpm@linux-foundation.org> Cc: Jan Harkes <jaharkes@cs.cmu.edu>, linux-fsdevel@vger.kernel.org, Fabian Frederick <fabf@skynet.be> Subject: [PATCH 17/22] coda: destroy mutex in put_super() Date: Fri, 17 May 2019 14:36:55 -0400 Message-Id: <f436f68908c467c5663bc6a9251b52cd7b95d2a5.1558117389.git.jaharkes@cs.cmu.edu> X-Mailer: git-send-email 2.20.1 In-Reply-To: <cover.1558117389.git.jaharkes@cs.cmu.edu> References: <cover.1558117389.git.jaharkes@cs.cmu.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: <linux-fsdevel.vger.kernel.org> X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP |
Series |
Coda updates
|
expand
|
diff --git a/fs/coda/inode.c b/fs/coda/inode.c index 96d832ed23b5..321f56e487cb 100644 --- a/fs/coda/inode.c +++ b/fs/coda/inode.c @@ -236,6 +236,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"); }