Searched defs:new_cqinfo (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_cq.c551 tavor_qalloc_info_t new_cqinfo, old_cqinfo; local
602 new_cqinfo.qa_size = (1 << log_cq_size) * sizeof (tavor_hw_cqe_t);
603 new_cqinfo.qa_alloc_align = sizeof (tavor_hw_cqe_t);
604 new_cqinfo.qa_bind_align = sizeof (tavor_hw_cqe_t);
606 new_cqinfo.qa_location = TAVOR_QUEUE_LOCATION_USERLAND;
608 new_cqinfo.qa_location = TAVOR_QUEUE_LOCATION_NORMAL;
610 status = tavor_queue_alloc(state, &new_cqinfo, sleepflag);
616 buf = (tavor_hw_cqe_t *)new_cqinfo.qa_buf_aligned;
635 mr_attr.mr_len = new_cqinfo.qa_size;
647 op.mro_bind_dmahdl = new_cqinfo
[all...]
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_cq.c581 hermon_qalloc_info_t new_cqinfo; local
638 new_cqinfo.qa_size = (1 << log_cq_size) * sizeof (hermon_hw_cqe_t);
639 new_cqinfo.qa_alloc_align = PAGESIZE;
640 new_cqinfo.qa_bind_align = PAGESIZE;
642 new_cqinfo.qa_location = HERMON_QUEUE_LOCATION_USERLAND;
644 new_cqinfo.qa_location = HERMON_QUEUE_LOCATION_NORMAL;
646 status = hermon_queue_alloc(state, &new_cqinfo, sleepflag);
653 buf = (hermon_hw_cqe_t *)new_cqinfo.qa_buf_aligned;
667 mr_attr.mr_len = new_cqinfo.qa_size;
671 op.mro_bind_dmahdl = new_cqinfo
[all...]

Completed in 60 milliseconds