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:
a247e07
)
scsi: sr: Fix sr_probe() missing deallocate of device minor
author
Simon Arlott
<simon@octiron.net>
Sat, 30 May 2020 17:59:44 +0000
(18:59 +0100)
committer
Martin K. Petersen
<martin.petersen@oracle.com>
Wed, 10 Jun 2020 01:57:26 +0000
(21:57 -0400)
If the cdrom fails to be registered then the device minor should be
deallocated.
Link:
https://lore.kernel.org/r/072dac4b-8402-4de8-36bd-47e7588969cd@0882a8b5-c6c3-11e9-b005-00805fc181fe
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 59718903e1efd6e34cf4801a38aa63f7a841ec43..b9cff27e2c810bed2958731fd349de1d0fefe581 100644
(file)
--- a/
drivers/scsi/sr.c
+++ b/
drivers/scsi/sr.c
@@
-793,7
+793,7
@@
static int sr_probe(struct device *dev)
cd->cdi.disk = disk;
if (register_cdrom(&cd->cdi))
- goto fail_
put
;
+ goto fail_
minor
;
/*
* Initialize block layer runtime PM stuffs before the
@@
-811,6
+811,10
@@
static int sr_probe(struct device *dev)
return 0;
+fail_minor:
+ spin_lock(&sr_index_lock);
+ clear_bit(minor, sr_index_bits);
+ spin_unlock(&sr_index_lock);
fail_put:
put_disk(disk);
mutex_destroy(&cd->lock);