aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorMatthew R. Ochs <mrochs@linux.vnet.ibm.com>2017-06-28 12:14:21 -0500
committerMartin K. Petersen <martin.petersen@oracle.com>2017-07-01 17:01:03 -0400
commitacfeb23b29894deaee65d63c55bea09183f6b538 (patch)
tree16c01d8d93cc04da716bd2330839553b7b4ed99c /drivers/scsi
parentscsi: Add STARGET_CREATED_REMOVE state to scsi_target_state (diff)
downloadlinux-dev-acfeb23b29894deaee65d63c55bea09183f6b538.tar.xz
linux-dev-acfeb23b29894deaee65d63c55bea09183f6b538.zip
scsi: cxlflash: Avoid double free of character device
The device_unregister() service used when cleaning up the character device is already responsible for the internal state associated with the device upon successful creation. As the cxlflash driver does not obtain a second reference to the character device, the explicit call to put_device() is not required and can lead to an inconsistent sysfs among other issues as the reference is no longer valid after the first put_device() is performed. Remove the unnecessary put_device() to remedy this issue. Fixes: a834a36b57d9 ("scsi: cxlflash: Create character device to provide host management interface") Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/cxlflash/main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/cxlflash/main.c b/drivers/scsi/cxlflash/main.c
index 7a787b6e21c4..455564fb6c4d 100644
--- a/drivers/scsi/cxlflash/main.c
+++ b/drivers/scsi/cxlflash/main.c
@@ -923,7 +923,6 @@ static void cxlflash_put_minor(int minor)
*/
static void cxlflash_release_chrdev(struct cxlflash_cfg *cfg)
{
- put_device(cfg->chardev);
device_unregister(cfg->chardev);
cfg->chardev = NULL;
cdev_del(&cfg->cdev);