Searched refs:qsz (Results 1 – 3 of 3) sorted by relevance
/linux-5.19.10/drivers/scsi/csiostor/ |
D | csio_wr.c | 194 uint32_t qsz; in csio_wr_alloc_q() local 204 qsz = ALIGN(qsize, CSIO_QCREDIT_SZ) + csio_wr_qstat_pgsz(hw); in csio_wr_alloc_q() 223 qsz = ALIGN(qsize/wrsize, 16) * wrsize; in csio_wr_alloc_q() 227 qsz = ALIGN(qsize/wrsize, 8) * wrsize + csio_wr_qstat_pgsz(hw); in csio_wr_alloc_q() 236 q->vstart = dma_alloc_coherent(&hw->pdev->dev, qsz, &q->pstart, in csio_wr_alloc_q() 248 q->size = qsz; in csio_wr_alloc_q() 261 q->credits = (qsz - q->wr_sz) / q->wr_sz; in csio_wr_alloc_q() 262 q->vwrap = (void *)((uintptr_t)(q->vstart) + qsz in csio_wr_alloc_q() 315 q->credits = (qsz - csio_wr_qstat_pgsz(hw)) / CSIO_QCREDIT_SZ; in csio_wr_alloc_q() 316 q->vwrap = (void *)((uintptr_t)(q->vstart) + qsz in csio_wr_alloc_q() [all …]
|
/linux-5.19.10/drivers/scsi/snic/ |
D | snic_main.c | 102 int qsz = 0; in snic_change_queue_depth() local 104 qsz = min_t(u32, qdepth, SNIC_MAX_QUEUE_DEPTH); in snic_change_queue_depth() 105 if (qsz < sdev->queue_depth) in snic_change_queue_depth() 107 else if (qsz > sdev->queue_depth) in snic_change_queue_depth() 112 scsi_change_queue_depth(sdev, qsz); in snic_change_queue_depth()
|
/linux-5.19.10/drivers/iommu/arm/arm-smmu-v3/ |
D | arm-smmu-v3.c | 2881 size_t qsz; in arm_smmu_init_one_queue() local 2884 qsz = ((1 << q->llq.max_n_shift) * dwords) << 3; in arm_smmu_init_one_queue() 2885 q->base = dmam_alloc_coherent(smmu->dev, qsz, &q->base_dma, in arm_smmu_init_one_queue() 2887 if (q->base || qsz < PAGE_SIZE) in arm_smmu_init_one_queue() 2896 qsz, name); in arm_smmu_init_one_queue() 2900 if (!WARN_ON(q->base_dma & (qsz - 1))) { in arm_smmu_init_one_queue()
|