diff options
Diffstat (limited to 'drivers/scsi/scsi_scan.c')
| -rw-r--r-- | drivers/scsi/scsi_scan.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index d217be323cc6..aa13feb17c62 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c @@ -1087,6 +1087,8 @@ static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result,  	if (sdev->scsi_level >= SCSI_3)  		scsi_attach_vpd(sdev); +	scsi_cdl_check(sdev); +  	sdev->max_queue_depth = sdev->queue_depth;  	WARN_ON_ONCE(sdev->max_queue_depth > sdev->budget_map.depth);  	sdev->sdev_bflags = *bflags; @@ -1624,6 +1626,7 @@ void scsi_rescan_device(struct device *dev)  	device_lock(dev);  	scsi_attach_vpd(sdev); +	scsi_cdl_check(sdev);  	if (sdev->handler && sdev->handler->rescan)  		sdev->handler->rescan(sdev);  |