Lines Matching refs:opcode
767 t3c_tid->client->handlers[p->opcode]) { in do_stid_rpl()
768 return t3c_tid->client->handlers[p->opcode] (dev, skb, in do_stid_rpl()
772 dev->name, p->opcode); in do_stid_rpl()
785 t3c_tid->client->handlers[p->opcode]) { in do_hwtid_rpl()
786 return t3c_tid->client->handlers[p->opcode] in do_hwtid_rpl()
790 dev->name, p->opcode); in do_hwtid_rpl()
852 t3c_tid->client->handlers[p->opcode]) { in do_abort_req_rss()
853 return t3c_tid->client->handlers[p->opcode] in do_abort_req_rss()
947 unsigned int opcode = get_opcode(skb); in do_term() local
952 t3c_tid->client->handlers[opcode]) { in do_term()
953 return t3c_tid->client->handlers[opcode] (dev, skb, in do_term()
957 dev->name, opcode); in do_term()
1005 void t3_register_cpl_handler(unsigned int opcode, cpl_handler_func h) in t3_register_cpl_handler() argument
1007 if (opcode < NUM_CPL_CMDS) in t3_register_cpl_handler()
1008 cpl_handlers[opcode] = h ? h : do_bad_cpl; in t3_register_cpl_handler()
1011 opcode); in t3_register_cpl_handler()
1023 unsigned int opcode = get_opcode(skb); in process_rx() local
1024 int ret = cpl_handlers[opcode] (dev, skb); in process_rx()
1031 dev->name, opcode, G_TID(ntohl(p->opcode_tid))); in process_rx()