Symbol: ib_event
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
145
struct ib_event ib_event;
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
163
bzero(&ib_event, sizeof (struct ib_event));
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
166
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
170
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
174
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
178
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
182
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
186
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
190
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
194
FIRE_QP_EVENT(ofs_client, hdl, ib_event, qpp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
198
FIRE_CQ_EVENT(ofs_client, hdl, ib_event, cqp,
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
940
void (*event_handler)(struct ib_event *, void *), void *cq_context,
usr/src/uts/common/io/ib/clients/rdsv3/ib_cm.c
289
rdsv3_ib_cq_event_handler(struct ib_event *event, void *data)
usr/src/uts/common/io/ib/clients/rdsv3/ib_cm.c
441
rdsv3_ib_qp_event_handler(struct ib_event *event, void *data)
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
293
struct ib_event *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
413
void (*event_handler)(struct ib_event *, void *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
448
void (*event_handler)(struct ib_event *, void *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
591
void (*event_handler)(struct ib_event *, void *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
601
void (*event_handler)(struct ib_event *, void *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
612
void (*event_handler)(struct ib_event *, void *);
usr/src/uts/common/sys/ib/clients/of/rdma/ib_verbs.h
730
void (*event_handler)(struct ib_event *, void *),
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
40
#define FIRE_QP_EVENT(clnt, hdl, ib_event, qpp, type) \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
44
ib_event.device = qpp->device; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
45
ib_event.event = type; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
46
ib_event.element.qp = qpp; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
47
qpp->event_handler(&ib_event, qpp->qp_context); \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
51
#define FIRE_CQ_EVENT(clnt, hdl, ib_event, cqp, type) \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
55
ib_event.device = cqp->device; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
56
ib_event.event = type; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
57
ib_event.element.cq = cqp; \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_kverb_impl.h
58
cqp->event_handler(&ib_event, cqp->cq_context); \