mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
[SCSI] qla4xxx: fix queue depth setting
We want to set the queue depth to something reasonable - not the can_queue. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Cc: David Somayajulu <david.somayajulu@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
885ace9e2f
commit
d510d965e1
@ -46,6 +46,8 @@ MODULE_PARM_DESC(ql4xextended_error_logging,
|
||||
|
||||
int ql4_mod_unload = 0;
|
||||
|
||||
#define QL4_DEF_QDEPTH 32
|
||||
|
||||
/*
|
||||
* SCSI host template entry points
|
||||
*/
|
||||
@ -1387,7 +1389,7 @@ static int qla4xxx_slave_alloc(struct scsi_device *sdev)
|
||||
|
||||
sdev->hostdata = ddb;
|
||||
sdev->tagged_supported = 1;
|
||||
scsi_activate_tcq(sdev, sdev->host->can_queue);
|
||||
scsi_activate_tcq(sdev, QL4_DEF_QDEPTH);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user