projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08e9cbe
)
scsi: sr: Fix sr_probe() missing mutex_destroy
author
Simon Arlott
<simon@octiron.net>
Sat, 30 May 2020 17:58:25 +0000
(18:58 +0100)
committer
Martin K. Petersen
<martin.petersen@oracle.com>
Wed, 10 Jun 2020 01:57:26 +0000
(21:57 -0400)
If the device minor cannot be allocated or the cdrom fails to be registered
then the mutex should be destroyed.
Link:
https://lore.kernel.org/r/06e9de38-eeed-1cab-5e08-e889288935b3@0882a8b5-c6c3-11e9-b005-00805fc181fe
Fixes:
51a858817dcd
("scsi: sr: get rid of sr global mutex")
Signed-off-by: Simon Arlott <simon@octiron.net>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/sr.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/sr.c
b/drivers/scsi/sr.c
index
7727893
..
5971890
100644
(file)
--- a/
drivers/scsi/sr.c
+++ b/
drivers/scsi/sr.c
@@
-813,6
+813,7
@@
static int sr_probe(struct device *dev)
fail_put:
put_disk(disk);
+ mutex_destroy(&cd->lock);
fail_free:
kfree(cd);
fail: