[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20190122134402.26653-1-parna.naveenkumar@gmail.com>
Date: Tue, 22 Jan 2019 19:14:02 +0530
From: parna.naveenkumar@...il.com
To: arnd@...db.de, gregkh@...uxfoundation.org
Cc: linux-kernel@...r.kernel.org,
Naveen Kumar Parna <parna.naveenkumar@...il.com>
Subject: [PATCH 2/2] mbcs: add .owner to mbcs struct file_operations
From: Naveen Kumar Parna <parna.naveenkumar@...il.com>
Without ".owner = THIS_MODULE" it is possible to crash the kernel
by unloading the mbcs module while someone works with the file.
Fix this by initializing the ‘struct file_operations' ->owner with
THIS_MODULE.
Signed-off-by: Naveen Kumar Parna <parna.naveenkumar@...il.com>
---
drivers/char/mbcs.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/char/mbcs.c b/drivers/char/mbcs.c
index 8c9216a0f62e..0a31b60bee7b 100644
--- a/drivers/char/mbcs.c
+++ b/drivers/char/mbcs.c
@@ -50,6 +50,7 @@ static LIST_HEAD(soft_list);
* file operations
*/
static const struct file_operations mbcs_ops = {
+ .owner = THIS_MODULE,
.open = mbcs_open,
.llseek = mbcs_sram_llseek,
.read = mbcs_sram_read,
--
2.17.1
Powered by blists - more mailing lists