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 47291bcff0d5..012f73a96880 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
@@ -251,6 +251,7 @@ static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget, | |||
251 | sdev->model = scsi_null_device_strs; | 251 | sdev->model = scsi_null_device_strs; |
252 | sdev->rev = scsi_null_device_strs; | 252 | sdev->rev = scsi_null_device_strs; |
253 | sdev->host = shost; | 253 | sdev->host = shost; |
254 | sdev->queue_ramp_up_period = SCSI_DEFAULT_RAMP_UP_PERIOD; | ||
254 | sdev->id = starget->id; | 255 | sdev->id = starget->id; |
255 | sdev->lun = lun; | 256 | sdev->lun = lun; |
256 | sdev->channel = starget->channel; | 257 | sdev->channel = starget->channel; |
@@ -941,6 +942,8 @@ static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result, | |||
941 | } | 942 | } |
942 | } | 943 | } |
943 | 944 | ||
945 | sdev->max_queue_depth = sdev->queue_depth; | ||
946 | |||
944 | /* | 947 | /* |
945 | * Ok, the device is now all set up, we can | 948 | * Ok, the device is now all set up, we can |
946 | * register it and tell the rest of the kernel | 949 | * register it and tell the rest of the kernel |