Home
last modified time | relevance | path

Searched refs:sq_size (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/uts/common/io/ib/clients/iser/
H A Diser_ib.c61 static void iser_ib_init_qp(iser_chan_t *chan, uint_t sq_size, uint_t rq_size);
68 ibt_cq_hdl_t rcq_hdl, uint_t sq_size, uint_t rq_size,
471 uint_t sq_size, rq_size; in iser_ib_alloc_rc_channel() local
487 sq_size = min(hca->hca_attr.hca_max_chan_sz, ISER_IB_SENDQ_SIZE); in iser_ib_alloc_rc_channel()
495 if (hca->hca_attr.hca_max_cq_sz >= (sq_size + 1)) { in iser_ib_alloc_rc_channel()
496 chan->ic_sendcq_sz = sq_size + 1; in iser_ib_alloc_rc_channel()
499 sq_size = chan->ic_sendcq_sz - 1; in iser_ib_alloc_rc_channel()
510 iser_ib_init_qp(chan, sq_size, rq_size); in iser_ib_alloc_rc_channel()
541 sq_size, rq_size, hca->hca_pdhdl, &chanargs); in iser_ib_alloc_rc_channel()
1577 ibt_cq_hdl_t rcq_hdl, uint_t sq_size, uint_t rq_size, in iser_ib_setup_chanargs() argument
[all …]
/titanic_41/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_qp.c86 uint32_t sq_size, rq_size; in hermon_qp_alloc() local
460 sq_size = sq_depth * sq_wqe_size; in hermon_qp_alloc()
472 qp->qp_wqinfo.qa_size = sq_size + rq_size; in hermon_qp_alloc()
501 rq_buf = (uint32_t *)((uintptr_t)sq_buf + sq_size); in hermon_qp_alloc()
502 qp->qp_rq_baseaddr = sq_size; in hermon_qp_alloc()
786 uint32_t sq_size, rq_size, max_sgl; in hermon_special_qp_alloc() local
998 sq_size = (1 << log_qp_sq_size) * sq_wqe_size; in hermon_special_qp_alloc()
1003 qp->qp_wqinfo.qa_size = sq_size + rq_size; in hermon_special_qp_alloc()
1023 rq_buf = (uint32_t *)((uintptr_t)sq_buf + sq_size); in hermon_special_qp_alloc()
1024 qp->qp_rq_baseaddr = sq_size; in hermon_special_qp_alloc()
[all …]
/titanic_41/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_qp.c83 uint32_t sq_size, rq_size; in tavor_qp_alloc() local
401 sq_size = (1 << log_qp_sq_size) * sq_wqe_size; in tavor_qp_alloc()
412 qp->qp_wqinfo.qa_size = sq_size + rq_size; in tavor_qp_alloc()
435 rq_buf = (uint32_t *)((uintptr_t)sq_buf + sq_size); in tavor_qp_alloc()
666 uint32_t sq_size, rq_size, max_sgl; in tavor_special_qp_alloc() local
884 sq_size = (1 << log_qp_sq_size) * sq_wqe_size; in tavor_special_qp_alloc()
886 qp->qp_wqinfo.qa_size = sq_size + rq_size; in tavor_special_qp_alloc()
898 rq_buf = (uint32_t *)((uintptr_t)sq_buf + sq_size); in tavor_special_qp_alloc()
/titanic_41/usr/src/uts/common/sys/ib/clients/iser/
H A Diser_ib.h105 uint_t sq_size; member