mirror of https://gitee.com/openkylin/linux.git
scsi: mpt3sas: Force sense buffer allocations to be within same 4 GB region
According to the MPI specification, sense buffers can not cross a 4 GB boundary. While allocating, if any buffer crosses the 4 GB boundary, then: - Release the already allocated memory pools; and - Reallocate them by changing the DMA coherent mask to 32-bit Link: https://lore.kernel.org/r/20210305102904.7560-4-suganath-prabu.subramani@broadcom.com Signed-off-by: Suganath Prabu S <suganath-prabu.subramani@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
7dd847dae1
commit
970ac2bb70
|
@ -5526,6 +5526,38 @@ _base_allocate_chain_dma_pool(struct MPT3SAS_ADAPTER *ioc, u32 sz)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* _base_allocate_sense_dma_pool - Allocating DMA'able memory
|
||||
* for sense dma pool.
|
||||
* @ioc: Adapter object
|
||||
* @sz: DMA Pool size
|
||||
* Return: 0 for success, non-zero for failure.
|
||||
*/
|
||||
static int
|
||||
_base_allocate_sense_dma_pool(struct MPT3SAS_ADAPTER *ioc, u32 sz)
|
||||
{
|
||||
ioc->sense_dma_pool =
|
||||
dma_pool_create("sense pool", &ioc->pdev->dev, sz, 4, 0);
|
||||
if (!ioc->sense_dma_pool)
|
||||
return -ENOMEM;
|
||||
ioc->sense = dma_pool_alloc(ioc->sense_dma_pool,
|
||||
GFP_KERNEL, &ioc->sense_dma);
|
||||
if (!ioc->sense)
|
||||
return -EAGAIN;
|
||||
if (!mpt3sas_check_same_4gb_region((long)ioc->sense, sz)) {
|
||||
dinitprintk(ioc, pr_err(
|
||||
"Bad Sense Pool! sense (0x%p) sense_dma = (0x%llx)\n",
|
||||
ioc->sense, (unsigned long long) ioc->sense_dma));
|
||||
ioc->use_32bit_dma = true;
|
||||
return -EAGAIN;
|
||||
}
|
||||
ioc_info(ioc,
|
||||
"sense pool(0x%p) - dma(0x%llx): depth(%d), element_size(%d), pool_size (%d kB)\n",
|
||||
ioc->sense, (unsigned long long)ioc->sense_dma,
|
||||
ioc->scsiio_depth, SCSI_SENSE_BUFFERSIZE, sz/1024);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* base_alloc_rdpq_dma_pool - Allocating DMA'able memory
|
||||
* for reply queues.
|
||||
|
@ -5619,7 +5651,7 @@ _base_allocate_memory_pools(struct MPT3SAS_ADAPTER *ioc)
|
|||
u16 chains_needed_per_io;
|
||||
u32 sz, total_sz, reply_post_free_sz, reply_post_free_array_sz;
|
||||
u32 retry_sz;
|
||||
u32 rdpq_sz = 0;
|
||||
u32 rdpq_sz = 0, sense_sz = 0;
|
||||
u16 max_request_credit, nvme_blocks_needed;
|
||||
unsigned short sg_tablesize;
|
||||
u16 sge_size;
|
||||
|
@ -5962,58 +5994,20 @@ _base_allocate_memory_pools(struct MPT3SAS_ADAPTER *ioc)
|
|||
ioc_info(ioc, "chain pool depth(%d), frame_size(%d), pool_size(%d kB)\n",
|
||||
ioc->chain_depth, ioc->chain_segment_sz,
|
||||
(ioc->chain_depth * ioc->chain_segment_sz) / 1024));
|
||||
|
||||
/* sense buffers, 4 byte align */
|
||||
sz = ioc->scsiio_depth * SCSI_SENSE_BUFFERSIZE;
|
||||
ioc->sense_dma_pool = dma_pool_create("sense pool", &ioc->pdev->dev, sz,
|
||||
4, 0);
|
||||
if (!ioc->sense_dma_pool) {
|
||||
ioc_err(ioc, "sense pool: dma_pool_create failed\n");
|
||||
goto out;
|
||||
}
|
||||
ioc->sense = dma_pool_alloc(ioc->sense_dma_pool, GFP_KERNEL,
|
||||
&ioc->sense_dma);
|
||||
if (!ioc->sense) {
|
||||
ioc_err(ioc, "sense pool: dma_pool_alloc failed\n");
|
||||
goto out;
|
||||
}
|
||||
/* sense buffer requires to be in same 4 gb region.
|
||||
* Below function will check the same.
|
||||
* In case of failure, new pci pool will be created with updated
|
||||
* alignment. Older allocation and pool will be destroyed.
|
||||
* Alignment will be used such a way that next allocation if
|
||||
* success, will always meet same 4gb region requirement.
|
||||
* Actual requirement is not alignment, but we need start and end of
|
||||
* DMA address must have same upper 32 bit address.
|
||||
*/
|
||||
if (!mpt3sas_check_same_4gb_region((long)ioc->sense, sz)) {
|
||||
//Release Sense pool & Reallocate
|
||||
dma_pool_free(ioc->sense_dma_pool, ioc->sense, ioc->sense_dma);
|
||||
dma_pool_destroy(ioc->sense_dma_pool);
|
||||
ioc->sense = NULL;
|
||||
|
||||
ioc->sense_dma_pool =
|
||||
dma_pool_create("sense pool", &ioc->pdev->dev, sz,
|
||||
roundup_pow_of_two(sz), 0);
|
||||
if (!ioc->sense_dma_pool) {
|
||||
ioc_err(ioc, "sense pool: pci_pool_create failed\n");
|
||||
goto out;
|
||||
}
|
||||
ioc->sense = dma_pool_alloc(ioc->sense_dma_pool, GFP_KERNEL,
|
||||
&ioc->sense_dma);
|
||||
if (!ioc->sense) {
|
||||
ioc_err(ioc, "sense pool: pci_pool_alloc failed\n");
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
sense_sz = ioc->scsiio_depth * SCSI_SENSE_BUFFERSIZE;
|
||||
rc = _base_allocate_sense_dma_pool(ioc, sense_sz);
|
||||
if (rc == -ENOMEM)
|
||||
return -ENOMEM;
|
||||
else if (rc == -EAGAIN)
|
||||
goto try_32bit_dma;
|
||||
total_sz += sense_sz;
|
||||
ioc_info(ioc,
|
||||
"sense pool(0x%p)- dma(0x%llx): depth(%d),"
|
||||
"element_size(%d), pool_size(%d kB)\n",
|
||||
ioc->sense, (unsigned long long)ioc->sense_dma, ioc->scsiio_depth,
|
||||
SCSI_SENSE_BUFFERSIZE, sz / 1024);
|
||||
|
||||
total_sz += sz;
|
||||
|
||||
/* reply pool, 4 byte align */
|
||||
sz = ioc->reply_free_queue_depth * ioc->reply_sz;
|
||||
ioc->reply_dma_pool = dma_pool_create("reply pool", &ioc->pdev->dev, sz,
|
||||
|
|
Loading…
Reference in New Issue