From: Simon Arlott Date: Sat, 30 May 2020 17:59:44 +0000 (+0100) Subject: scsi: sr: Fix sr_probe() missing deallocate of device minor X-Git-Tag: v5.7.6~370 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=83724c50b405f1768bbd49b24ab8bbfc3c6b7c54;p=users%2Fdwmw2%2Flinux.git scsi: sr: Fix sr_probe() missing deallocate of device minor [ Upstream commit 6555781b3fdec5e94e6914511496144241df7dee ] 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 Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c index 8d062d4f3ce0b..1e13c6a0f0caf 100644 --- a/drivers/scsi/sr.c +++ b/drivers/scsi/sr.c @@ -797,7 +797,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 @@ -815,6 +815,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);