Commit 76e696e0 authored by Roland Dreier's avatar Roland Dreier Committed by Linus Torvalds

[PATCH] InfiniBand/core: add qp_type to struct ib_qp

Add qp_type to struct ib_qp.

Signed-off by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: default avatarRoland Dreier <roland@topspin.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c74ce03d
...@@ -132,6 +132,7 @@ struct ib_qp *ib_create_qp(struct ib_pd *pd, ...@@ -132,6 +132,7 @@ struct ib_qp *ib_create_qp(struct ib_pd *pd,
qp->srq = qp_init_attr->srq; qp->srq = qp_init_attr->srq;
qp->event_handler = qp_init_attr->event_handler; qp->event_handler = qp_init_attr->event_handler;
qp->qp_context = qp_init_attr->qp_context; qp->qp_context = qp_init_attr->qp_context;
qp->qp_type = qp_init_attr->qp_type;
atomic_inc(&pd->usecnt); atomic_inc(&pd->usecnt);
atomic_inc(&qp_init_attr->send_cq->usecnt); atomic_inc(&qp_init_attr->send_cq->usecnt);
atomic_inc(&qp_init_attr->recv_cq->usecnt); atomic_inc(&qp_init_attr->recv_cq->usecnt);
......
...@@ -659,6 +659,7 @@ struct ib_qp { ...@@ -659,6 +659,7 @@ struct ib_qp {
void (*event_handler)(struct ib_event *, void *); void (*event_handler)(struct ib_event *, void *);
void *qp_context; void *qp_context;
u32 qp_num; u32 qp_num;
enum ib_qp_type qp_type;
}; };
struct ib_mr { struct ib_mr {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment