/drivers/scsi/ |
D | BusLogic.c | 1643 unsigned char qdepth = 0; in blogic_rdconfig() local 1645 adapter->drvr_opts->qdepth[tgt_id] > 0) in blogic_rdconfig() 1646 qdepth = adapter->drvr_opts->qdepth[tgt_id]; in blogic_rdconfig() 1647 adapter->qdepth[tgt_id] = qdepth; in blogic_rdconfig() 1809 if (adapter->qdepth[tgt_id] != adapter->qdepth[0]) { in blogic_reportconfig() 1814 if (adapter->qdepth[0] > 0) in blogic_reportconfig() 1815 blogic_info("%d", adapter, adapter->qdepth[0]); in blogic_reportconfig() 2167 int qdepth = adapter->qdepth[tgt_id]; in blogic_slaveconfig() local 2171 if (qdepth == 0) in blogic_slaveconfig() 2172 qdepth = BLOGIC_MAX_AUTO_TAG_DEPTH; in blogic_slaveconfig() [all …]
|
D | BusLogic.h | 885 unsigned char qdepth[BLOGIC_MAXDEV]; member 1048 unsigned char qdepth[BLOGIC_MAXDEV]; member
|
D | vmw_pvscsi.c | 532 static int pvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth) in pvscsi_change_queue_depth() argument 535 qdepth = 1; in pvscsi_change_queue_depth() 536 return scsi_change_queue_depth(sdev, qdepth); in pvscsi_change_queue_depth()
|
D | iscsi_tcp.c | 923 uint16_t qdepth, uint32_t initial_cmdsn) in iscsi_sw_tcp_session_create() argument 941 shost->cmd_per_lun = qdepth; in iscsi_sw_tcp_session_create()
|
D | virtio_scsi.c | 691 static int virtscsi_change_queue_depth(struct scsi_device *sdev, int qdepth) in virtscsi_change_queue_depth() argument 696 return scsi_change_queue_depth(sdev, min(max_depth, qdepth)); in virtscsi_change_queue_depth()
|
D | scsi_debug.c | 5568 int qdepth = cmnd->device->queue_depth; in schedule_resp() local 5570 if ((num_in_q == qdepth) && in schedule_resp() 7307 static int sdebug_change_qdepth(struct scsi_device *sdev, int qdepth) in sdebug_change_qdepth() argument 7317 if (qdepth > SDEBUG_CANQUEUE) { in sdebug_change_qdepth() 7318 qdepth = SDEBUG_CANQUEUE; in sdebug_change_qdepth() 7320 qdepth, SDEBUG_CANQUEUE); in sdebug_change_qdepth() 7322 if (qdepth < 1) in sdebug_change_qdepth() 7323 qdepth = 1; in sdebug_change_qdepth() 7324 if (qdepth != sdev->queue_depth) in sdebug_change_qdepth() 7325 scsi_change_queue_depth(sdev, qdepth); in sdebug_change_qdepth() [all …]
|
D | hpsa.c | 283 static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth); 1715 int qdepth; in hpsa_figure_phys_disk_ptrs() local 1722 qdepth = 0; in hpsa_figure_phys_disk_ptrs() 1740 qdepth = min(h->nr_cmds, qdepth + in hpsa_figure_phys_disk_ptrs() 1767 logical_drive->queue_depth = qdepth; in hpsa_figure_phys_disk_ptrs() 5821 static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth) in hpsa_change_queue_depth() argument 5828 if (qdepth < 1) in hpsa_change_queue_depth() 5829 qdepth = 1; in hpsa_change_queue_depth() 5830 else if (qdepth > logical_drive->queue_depth) in hpsa_change_queue_depth() 5831 qdepth = logical_drive->queue_depth; in hpsa_change_queue_depth() [all …]
|
/drivers/scsi/aic94xx/ |
D | aic94xx_dev.c | 100 u32 qdepth = 0; in asd_set_dmamode() local 104 qdepth = ata_id_queue_depth(ata_dev->id); in asd_set_dmamode() 106 (1ULL<<qdepth)-1); in asd_set_dmamode() 107 asd_ddbsite_write_byte(asd_ha, ddb, NUM_SATA_TAGS, qdepth); in asd_set_dmamode() 110 if (qdepth > 0) in asd_set_dmamode()
|
/drivers/usb/storage/ |
D | uas.c | 41 int qdepth, resetting; member 111 for (i = 0; i < devinfo->qdepth; i++) { in uas_do_work() 160 for (i = 0; i < devinfo->qdepth; i++) { in uas_zap_pending() 662 for (idx = 0; idx < devinfo->qdepth; idx++) { in uas_queuecommand_lck() 666 if (idx == devinfo->qdepth) { in uas_queuecommand_lck() 898 scsi_change_queue_depth(sdev, devinfo->qdepth - 2); in uas_slave_configure() 966 devinfo->qdepth = 32; in uas_configure_endpoints() 969 devinfo->qdepth = usb_alloc_streams(devinfo->intf, eps + 1, in uas_configure_endpoints() 971 if (devinfo->qdepth < 0) in uas_configure_endpoints() 972 return devinfo->qdepth; in uas_configure_endpoints() [all …]
|
/drivers/block/rnbd/ |
D | rnbd-srv-trace.h | 24 __field(int, qdepth) 29 __entry->qdepth = srv->queue_depth; 35 __entry->qdepth
|
/drivers/scsi/snic/ |
D | snic_main.c | 67 u32 qdepth = 0, max_ios = 0; in snic_slave_configure() local 72 qdepth = min_t(u32, max_ios, SNIC_MAX_QUEUE_DEPTH); in snic_slave_configure() 73 scsi_change_queue_depth(sdev, qdepth); in snic_slave_configure() 85 snic_change_queue_depth(struct scsi_device *sdev, int qdepth) in snic_change_queue_depth() argument 90 qsz = min_t(u32, qdepth, SNIC_MAX_QUEUE_DEPTH); in snic_change_queue_depth()
|
/drivers/s390/crypto/ |
D | zcrypt_api.c | 1325 static void zcrypt_qdepth_mask(char qdepth[], size_t max_adapters) in zcrypt_qdepth_mask() argument 1331 memset(qdepth, 0, max_adapters); in zcrypt_qdepth_mask() 1341 qdepth[card] = in zcrypt_qdepth_mask() 1598 char qdepth[AP_DEVICES]; in zcrypt_unlocked_ioctl() local 1600 zcrypt_qdepth_mask(qdepth, AP_DEVICES); in zcrypt_unlocked_ioctl() 1601 if (copy_to_user((char __user *)arg, qdepth, sizeof(qdepth))) in zcrypt_unlocked_ioctl() 1657 char qdepth[MAX_ZDEV_CARDIDS]; in zcrypt_unlocked_ioctl() local 1659 zcrypt_qdepth_mask(qdepth, MAX_ZDEV_CARDIDS); in zcrypt_unlocked_ioctl() 1660 if (copy_to_user((char __user *)arg, qdepth, sizeof(qdepth))) in zcrypt_unlocked_ioctl()
|
/drivers/scsi/be2iscsi/ |
D | be_iscsi.h | 38 uint16_t qdepth,
|
D | be_iscsi.c | 37 u16 qdepth, in beiscsi_session_create() argument
|
/drivers/message/fusion/ |
D | mptscsih.h | 131 extern int mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth);
|
D | mptscsih.c | 2312 mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth) in mptscsih_change_queue_depth() argument 2337 if (qdepth > max_depth) in mptscsih_change_queue_depth() 2338 qdepth = max_depth; in mptscsih_change_queue_depth() 2340 return scsi_change_queue_depth(sdev, qdepth); in mptscsih_change_queue_depth()
|
/drivers/scsi/mpt3sas/ |
D | mpt3sas_scsih.c | 1789 scsih_change_queue_depth(struct scsi_device *sdev, int qdepth) in scsih_change_queue_depth() argument 1831 if (qdepth > max_depth) in scsih_change_queue_depth() 1832 qdepth = max_depth; in scsih_change_queue_depth() 1833 scsi_change_queue_depth(sdev, qdepth); in scsih_change_queue_depth() 1849 mpt3sas_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth) in mpt3sas_scsih_change_queue_depth() argument 1855 qdepth = shost->can_queue; in mpt3sas_scsih_change_queue_depth() 1857 scsih_change_queue_depth(sdev, qdepth); in mpt3sas_scsih_change_queue_depth() 2518 int qdepth; in scsih_slave_configure() local 2525 qdepth = 1; in scsih_slave_configure() 2564 qdepth = MPT3SAS_SAS_QUEUE_DEPTH; in scsih_slave_configure() [all …]
|
D | mpt3sas_ctl.c | 3874 int qdepth; in enable_sdev_max_qd_store() local 3900 qdepth = in enable_sdev_max_qd_store() 3903 qdepth = in enable_sdev_max_qd_store() 3911 qdepth = MPT3SAS_RAID_QUEUE_DEPTH; in enable_sdev_max_qd_store() 3915 qdepth = ioc->max_nvme_qd; in enable_sdev_max_qd_store() 3917 qdepth = (sas_target_priv_data->sas_dev->port_type > 1) ? in enable_sdev_max_qd_store() 3920 mpt3sas_scsih_change_queue_depth(sdev, qdepth); in enable_sdev_max_qd_store()
|
D | mpt3sas_base.h | 1844 void mpt3sas_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth);
|
/drivers/infiniband/ulp/iser/ |
D | iscsi_iser.c | 605 uint16_t cmds_max, uint16_t qdepth, in iscsi_iser_session_create() argument 619 shost->cmd_per_lun = qdepth; in iscsi_iser_session_create()
|
/drivers/scsi/ibmvscsi/ |
D | ibmvscsi.c | 1892 static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth) in ibmvscsi_change_queue_depth() argument 1894 if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN) in ibmvscsi_change_queue_depth() 1895 qdepth = IBMVSCSI_MAX_CMDS_PER_LUN; in ibmvscsi_change_queue_depth() 1896 return scsi_change_queue_depth(sdev, qdepth); in ibmvscsi_change_queue_depth()
|
D | ibmvfc.c | 3439 static int ibmvfc_change_queue_depth(struct scsi_device *sdev, int qdepth) in ibmvfc_change_queue_depth() argument 3441 if (qdepth > IBMVFC_MAX_CMDS_PER_LUN) in ibmvfc_change_queue_depth() 3442 qdepth = IBMVFC_MAX_CMDS_PER_LUN; in ibmvfc_change_queue_depth() 3444 return scsi_change_queue_depth(sdev, qdepth); in ibmvfc_change_queue_depth()
|
/drivers/scsi/cxlflash/ |
D | main.c | 2537 static int cxlflash_change_queue_depth(struct scsi_device *sdev, int qdepth) in cxlflash_change_queue_depth() argument 2540 if (qdepth > CXLFLASH_MAX_CMDS_PER_LUN) in cxlflash_change_queue_depth() 2541 qdepth = CXLFLASH_MAX_CMDS_PER_LUN; in cxlflash_change_queue_depth() 2543 scsi_change_queue_depth(sdev, qdepth); in cxlflash_change_queue_depth()
|
/drivers/infiniband/ulp/srp/ |
D | ib_srp.c | 2707 srp_change_queue_depth(struct scsi_device *sdev, int qdepth) in srp_change_queue_depth() argument 2710 qdepth = 1; in srp_change_queue_depth() 2711 return scsi_change_queue_depth(sdev, qdepth); in srp_change_queue_depth()
|
/drivers/scsi/qedi/ |
D | qedi_iscsi.c | 240 u16 qdepth, uint32_t initial_cmdsn) in qedi_session_create() argument
|