scsi: sd: Free scsi_disk device via put_device()
[ Upstream commit 265dfe8ebbabae7959060bd1c3f75c2473b697ed ] After a device is initialized via device_initialize() it should be freed via put_device(). sd_probe() currently gets this wrong, fix it up. Link: https://lore.kernel.org/r/20210906090112.531442-1-ming.lei@redhat.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
76c7063c74
commit
60df9f5556
@@ -3443,15 +3443,16 @@ static int sd_probe(struct device *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
device_initialize(&sdkp->dev);
|
device_initialize(&sdkp->dev);
|
||||||
sdkp->dev.parent = dev;
|
sdkp->dev.parent = get_device(dev);
|
||||||
sdkp->dev.class = &sd_disk_class;
|
sdkp->dev.class = &sd_disk_class;
|
||||||
dev_set_name(&sdkp->dev, "%s", dev_name(dev));
|
dev_set_name(&sdkp->dev, "%s", dev_name(dev));
|
||||||
|
|
||||||
error = device_add(&sdkp->dev);
|
error = device_add(&sdkp->dev);
|
||||||
if (error)
|
if (error) {
|
||||||
goto out_free_index;
|
put_device(&sdkp->dev);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
get_device(dev);
|
|
||||||
dev_set_drvdata(dev, sdkp);
|
dev_set_drvdata(dev, sdkp);
|
||||||
|
|
||||||
gd->major = sd_major((index & 0xf0) >> 4);
|
gd->major = sd_major((index & 0xf0) >> 4);
|
||||||
|
Reference in New Issue
Block a user