Lines Matching refs:opcode_handler
188 static const opcode_handler opcode_handler_tbl[256] = {
274 static inline opcode_handler qp_ok(struct hfi1_packet *packet) in qp_ok()
317 static opcode_handler tid_qp_ok(int opcode, struct hfi1_packet *packet) in tid_qp_ok()
335 opcode_handler opcode_handler; in hfi1_kdeth_eager_rcv() local
364 opcode_handler = tid_qp_ok(opcode, packet); in hfi1_kdeth_eager_rcv()
365 if (likely(opcode_handler)) in hfi1_kdeth_eager_rcv()
366 opcode_handler(packet); in hfi1_kdeth_eager_rcv()
389 opcode_handler opcode_handler; in hfi1_kdeth_expected_rcv() local
418 opcode_handler = tid_qp_ok(opcode, packet); in hfi1_kdeth_expected_rcv()
419 if (likely(opcode_handler)) in hfi1_kdeth_expected_rcv()
420 opcode_handler(packet); in hfi1_kdeth_expected_rcv()
461 opcode_handler packet_handler; in hfi1_handle_packet()