[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20210409095141.2293982-1-yebin10@huawei.com>
Date: Fri, 9 Apr 2021 17:51:41 +0800
From: Ye Bin <yebin10@...wei.com>
To: <yebin10@...wei.com>, Christine Caulfield <ccaulfie@...hat.com>,
"David Teigland" <teigland@...hat.com>
CC: <cluster-devel@...hat.com>, <linux-kernel@...r.kernel.org>,
<kernel-janitors@...r.kernel.org>, Hulk Robot <hulkci@...wei.com>
Subject: [PATCH -next] dlm: use DEFINE_MUTEX() for mutex lock
mutex lock can be initialized automatically with DEFINE_MUTEX()
rather than explicitly calling mutex_init().
Reported-by: Hulk Robot <hulkci@...wei.com>
Signed-off-by: Ye Bin <yebin10@...wei.com>
---
fs/dlm/debug_fs.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c
index d5bd990bcab8..327a69598de5 100644
--- a/fs/dlm/debug_fs.c
+++ b/fs/dlm/debug_fs.c
@@ -20,7 +20,7 @@
#define DLM_DEBUG_BUF_LEN 4096
static char debug_buf[DLM_DEBUG_BUF_LEN];
-static struct mutex debug_buf_lock;
+static DEFINE_MUTEX(debug_buf_lock);
static struct dentry *dlm_root;
@@ -795,7 +795,6 @@ void dlm_create_debug_file(struct dlm_ls *ls)
void __init dlm_register_debugfs(void)
{
- mutex_init(&debug_buf_lock);
dlm_root = debugfs_create_dir("dlm", NULL);
}
Powered by blists - more mailing lists