···2026 return 0;2027}2028000000000002029int __init iwch_cm_init(void)2030{2031 skb_queue_head_init(&rxq);···2064 t3c_handlers[CPL_ABORT_REQ_RSS] = sched;2065 t3c_handlers[CPL_RDMA_TERMINATE] = sched;2066 t3c_handlers[CPL_RDMA_EC_STATUS] = sched;020672068 /*2069 * These are the real handlers that are called from a
···2026 return 0;2027}20282029+static int set_tcb_rpl(struct t3cdev *tdev, struct sk_buff *skb, void *ctx)2030+{2031+ struct cpl_set_tcb_rpl *rpl = cplhdr(skb);2032+2033+ if (rpl->status != CPL_ERR_NONE) {2034+ printk(KERN_ERR MOD "Unexpected SET_TCB_RPL status %u "2035+ "for tid %u\n", rpl->status, GET_TID(rpl));2036+ }2037+ return CPL_RET_BUF_DONE;2038+}2039+2040int __init iwch_cm_init(void)2041{2042 skb_queue_head_init(&rxq);···2053 t3c_handlers[CPL_ABORT_REQ_RSS] = sched;2054 t3c_handlers[CPL_RDMA_TERMINATE] = sched;2055 t3c_handlers[CPL_RDMA_EC_STATUS] = sched;2056+ t3c_handlers[CPL_SET_TCB_RPL] = set_tcb_rpl;20572058 /*2059 * These are the real handlers that are called from a