Home
last modified time | relevance | path

Searched refs:ioqueue_size (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/scsi/arcmsr/
H A Darcmsr_hba.c253 dma_free_coherent(&acb->pdev->dev, acb->ioqueue_size, in arcmsr_free_io_queue()
684 acb->ioqueue_size = roundup(sizeof(struct MessageUnit_B), 32); in arcmsr_alloc_io_queue()
685 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->ioqueue_size, in arcmsr_alloc_io_queue()
698 acb->ioqueue_size = roundup(sizeof(struct MessageUnit_D), 32); in arcmsr_alloc_io_queue()
699 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->ioqueue_size, in arcmsr_alloc_io_queue()
714 acb->ioqueue_size = roundup(completeQ_size, 32); in arcmsr_alloc_io_queue()
715 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->ioqueue_size, in arcmsr_alloc_io_queue()
724 acb->completionQ_entry = acb->ioqueue_size / sizeof(struct deliver_completeQ); in arcmsr_alloc_io_queue()
735 acb->ioqueue_size = roundup(acb->completeQ_size + MESG_RW_BUFFER_SIZE, 32); in arcmsr_alloc_io_queue()
736 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->ioqueue_size, in arcmsr_alloc_io_queue()
[all …]
H A Darcmsr.h856 u32 ioqueue_size; member