Searched refs:conreq (Results 1 - 2 of 2) sorted by relevance

/linux-4.4.14/drivers/misc/mic/scif/
H A Dscif_epd.c131 struct scif_conreq *conreq; scif_cnctreq() local
133 conreq = kmalloc(sizeof(*conreq), GFP_KERNEL); scif_cnctreq()
134 if (!conreq) scif_cnctreq()
151 conreq->msg = *msg; scif_cnctreq()
152 list_add_tail(&conreq->list, &ep->conlist); scif_cnctreq()
159 kfree(conreq); scif_cnctreq()
H A Dscif_api.c221 struct scif_conreq *conreq; scif_close() local
278 conreq = list_first_entry(&ep->conlist, scif_close()
280 list_del(&conreq->list); scif_close()
283 msg.dst.node = conreq->msg.src.node; scif_close()
284 msg.dst.port = conreq->msg.src.port; scif_close()
285 msg.payload[0] = conreq->msg.payload[0]; scif_close()
286 msg.payload[1] = conreq->msg.payload[1]; scif_close()
292 scif_nodeqp_send(&scif_dev[conreq->msg.src.node], scif_close()
295 kfree(conreq); scif_close()
752 struct scif_conreq *conreq; scif_accept() local
798 conreq = list_first_entry(&lep->conlist, struct scif_conreq, list); scif_accept()
799 list_del(&conreq->list); scif_accept()
804 peer->node = conreq->msg.src.node; scif_accept()
805 peer->port = conreq->msg.src.port; scif_accept()
817 cep->remote_ep = conreq->msg.payload[0]; scif_accept()
845 conreq->msg.payload[1], SCIF_ENDPT_QP_SIZE, scif_accept()
882 kfree(conreq); scif_accept()
915 msg.dst.node = conreq->msg.src.node; scif_accept()
916 msg.dst.port = conreq->msg.src.port; scif_accept()
917 msg.payload[0] = conreq->msg.payload[0]; scif_accept()
918 msg.payload[1] = conreq->msg.payload[1]; scif_accept()
919 scif_nodeqp_send(&scif_dev[conreq->msg.src.node], &msg); scif_accept()
920 kfree(conreq); scif_accept()

Completed in 103 milliseconds