OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:qpn_offset
(Results
1 - 2
of
2
) sorted by null
/external/syslinux/gpxe/src/drivers/infiniband/
arbel.c
784
int
qpn_offset
;
local
788
qpn_offset
= arbel_alloc_qn_offset ( arbel->qp_inuse, ARBEL_MAX_QPS );
789
if (
qpn_offset
< 0 ) {
791
rc =
qpn_offset
;
794
qp->qpn = ( ARBEL_QPN_BASE + arbel->limits.reserved_qps +
qpn_offset
);
802
arbel_qp->send.doorbell_idx = arbel_send_doorbell_idx (
qpn_offset
);
803
arbel_qp->recv.doorbell_idx = arbel_recv_doorbell_idx (
qpn_offset
);
900
arbel_free_qn_offset ( arbel->qp_inuse,
qpn_offset
);
943
int
qpn_offset
;
local
966
qpn_offset
= ( qp->qpn - ARBEL_QPN_BASE - arbel->limits.reserved_qps )
[
all
...]
hermon.c
839
int
qpn_offset
;
local
854
qpn_offset
= hermon_bitmask_alloc ( hermon->qp_inuse,
856
if (
qpn_offset
< 0 ) {
859
return
qpn_offset
;
862
( hermon->qpn_base +
qpn_offset
) );
880
int
qpn_offset
;
local
882
qpn_offset
= ( ( qp->qpn & ~HERMON_QPN_RANDOM_MASK )
884
if (
qpn_offset
>= 0 )
885
hermon_bitmask_free ( hermon->qp_inuse,
qpn_offset
, 1 );
[
all
...]
Completed in 158 milliseconds