Lines Matching refs:deth
52 struct ib_datagram_extended_transport_header *deth; in ib_push() local
70 deth = iob_push ( iobuf, sizeof ( *deth ) ); in ib_push()
106 deth->qkey = htonl ( av->qkey ); in ib_push()
107 deth->src_qp = htonl ( qp->ext_qpn ); in ib_push()
130 struct ib_datagram_extended_transport_header *deth; in ib_pull() local
195 if ( iob_len ( iobuf ) < sizeof ( *deth ) ) { in ib_pull()
200 deth = iobuf->data; in ib_pull()
201 iob_pull ( iobuf, sizeof ( *deth ) ); in ib_pull()
202 av->qpn = ntohl ( deth->src_qp ); in ib_pull()
203 av->qkey = ntohl ( deth->qkey ); in ib_pull()
238 av->lid, av->qpn, ntohl ( deth->qkey ) ); in ib_pull()