From: Uwe Kleine-König Date: Wed, 23 Aug 2017 07:03:04 +0000 (+0200) Subject: mtd: nandsim: remove debugfs entries in error path X-Git-Tag: v4.13-rc7~19^2~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b974696da1cfc5aa0c29ed97dc8f6c239899e64b;p=linux-2.6-block.git mtd: nandsim: remove debugfs entries in error path The debugfs entries must be removed before an error is returned in the probe function. Otherwise another try to load the module fails and when the debugfs files are accessed without the module loaded, the kernel still tries to call a function in that module. Fixes: 5346c27c5fed ("mtd: nandsim: Introduce debugfs infrastructure") Signed-off-by: Uwe Kleine-König Reviewed-by: Richard Weinberger Acked-by: Boris Brezillon Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c index 03a0d057bf2f..e4211c3cc49b 100644 --- a/drivers/mtd/nand/nandsim.c +++ b/drivers/mtd/nand/nandsim.c @@ -2373,6 +2373,7 @@ static int __init ns_init_module(void) return 0; err_exit: + nandsim_debugfs_remove(nand); free_nandsim(nand); nand_release(nsmtd); for (i = 0;i < ARRAY_SIZE(nand->partitions); ++i)