[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191029095552.GA11561@saurav>
Date: Tue, 29 Oct 2019 15:25:52 +0530
From: Saurav Girepunje <saurav.girepunje@...il.com>
To: gregkh@...uxfoundation.org, tj@...nel.org,
linux-kernel@...r.kernel.org
Cc: saurav.girepunje@...mail.com
Subject: [PATCH] fs: kernfs: file.c: Drop the condition with no effect.
As the "if" and "else" branch body are identical the condition
has no effect. So drop the if,else condition.
Signed-off-by: Saurav Girepunje <saurav.girepunje@...il.com>
---
fs/kernfs/file.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/fs/kernfs/file.c b/fs/kernfs/file.c
index e8c792b49616..d8123d8cfdcc 100644
--- a/fs/kernfs/file.c
+++ b/fs/kernfs/file.c
@@ -663,10 +663,7 @@ static int kernfs_fop_open(struct inode *inode, struct file *file)
* Both paths of the branch look the same. They're supposed to
* look that way and give @of->mutex different static lockdep keys.
*/
- if (has_mmap)
- mutex_init(&of->mutex);
- else
- mutex_init(&of->mutex);
+ mutex_init(&of->mutex);
of->kn = kn;
of->file = file;
--
2.20.1
Powered by blists - more mailing lists