Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/io/scsi/adapters/mpt_sas/
H A Dmptsas.c4149 &p->m_dma_hdl) != DDI_SUCCESS) { in mptsas_cache_frames_constructor()
4157 if (ddi_dma_mem_alloc(p->m_dma_hdl, mem_size, &mpt->m_dev_acc_attr, in mptsas_cache_frames_constructor()
4160 ddi_dma_free_handle(&p->m_dma_hdl); in mptsas_cache_frames_constructor()
4161 p->m_dma_hdl = NULL; in mptsas_cache_frames_constructor()
4167 if (ddi_dma_addr_bind_handle(p->m_dma_hdl, NULL, p->m_frames_addr, in mptsas_cache_frames_constructor()
4171 ddi_dma_free_handle(&p->m_dma_hdl); in mptsas_cache_frames_constructor()
4172 p->m_dma_hdl = NULL; in mptsas_cache_frames_constructor()
4195 if (p->m_dma_hdl != NULL) { in mptsas_cache_frames_destructor()
4196 (void) ddi_dma_unbind_handle(p->m_dma_hdl); in mptsas_cache_frames_destructor()
4198 ddi_dma_free_handle(&p->m_dma_hdl); in mptsas_cache_frames_destructor()
[all …]
/titanic_50/usr/src/uts/common/sys/scsi/adapters/mpt_sas/
H A Dmptsas_var.h262 ddi_dma_handle_t m_dma_hdl; member