Lines Matching refs:opcode_handler
230 static const opcode_handler opcode_handler_tbl[256] = {
316 static inline opcode_handler qp_ok(struct hfi1_packet *packet) in qp_ok()
359 static opcode_handler tid_qp_ok(int opcode, struct hfi1_packet *packet) in tid_qp_ok()
377 opcode_handler opcode_handler; in hfi1_kdeth_eager_rcv() local
406 opcode_handler = tid_qp_ok(opcode, packet); in hfi1_kdeth_eager_rcv()
407 if (likely(opcode_handler)) in hfi1_kdeth_eager_rcv()
408 opcode_handler(packet); in hfi1_kdeth_eager_rcv()
431 opcode_handler opcode_handler; in hfi1_kdeth_expected_rcv() local
460 opcode_handler = tid_qp_ok(opcode, packet); in hfi1_kdeth_expected_rcv()
461 if (likely(opcode_handler)) in hfi1_kdeth_expected_rcv()
462 opcode_handler(packet); in hfi1_kdeth_expected_rcv()
503 opcode_handler packet_handler; in hfi1_handle_packet()