diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-12 18:44:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-12 18:44:52 -0400 |
commit | 8a065975c1c00d1ab3293c1adf6f89988bb1b03b (patch) | |
tree | 8835a41620cf6f6b955a444fa7e4503a05143d1a /drivers | |
parent | 0ea41a26baa7ef10bc8de72f9ed571dc677780bc (diff) | |
parent | 1ca19770c5ba90d041ba4d06976c77048d330cc8 (diff) |
Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband
* 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband:
RDMA/cxgb3: Add set_tcb_rpl_handler
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/cxgb3/iwch_cm.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index d0ed1d35ca3e..2d2de9b8b729 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_cm.c +++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c | |||
@@ -2026,6 +2026,17 @@ static int sched(struct t3cdev *tdev, struct sk_buff *skb, void *ctx) | |||
2026 | return 0; | 2026 | return 0; |
2027 | } | 2027 | } |
2028 | 2028 | ||
2029 | 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 | |||
2029 | int __init iwch_cm_init(void) | 2040 | int __init iwch_cm_init(void) |
2030 | { | 2041 | { |
2031 | skb_queue_head_init(&rxq); | 2042 | skb_queue_head_init(&rxq); |
@@ -2053,6 +2064,7 @@ int __init iwch_cm_init(void) | |||
2053 | t3c_handlers[CPL_ABORT_REQ_RSS] = sched; | 2064 | t3c_handlers[CPL_ABORT_REQ_RSS] = sched; |
2054 | t3c_handlers[CPL_RDMA_TERMINATE] = sched; | 2065 | t3c_handlers[CPL_RDMA_TERMINATE] = sched; |
2055 | t3c_handlers[CPL_RDMA_EC_STATUS] = sched; | 2066 | t3c_handlers[CPL_RDMA_EC_STATUS] = sched; |
2067 | t3c_handlers[CPL_SET_TCB_RPL] = set_tcb_rpl; | ||
2056 | 2068 | ||
2057 | /* | 2069 | /* |
2058 | * These are the real handlers that are called from a | 2070 | * These are the real handlers that are called from a |