Lines Matching refs:ctx_ops
54 const struct ntb_ctx_ops *ctx_ops; member
229 if (nc->ctx_ops != NULL && nc->ctx_ops->link_event != NULL) in ntb_link_event()
230 nc->ctx_ops->link_event(nc->ctx); in ntb_link_event()
244 if (nc->ctx_ops != NULL && nc->ctx_ops->db_event != NULL) in ntb_db_event()
245 nc->ctx_ops->db_event(nc->ctx, vec); in ntb_db_event()
324 ntb_set_ctx(device_t ntb, void *ctx, const struct ntb_ctx_ops *ctx_ops) in ntb_set_ctx() argument
328 if (ctx == NULL || ctx_ops == NULL) in ntb_set_ctx()
332 if (nc->ctx_ops != NULL) { in ntb_set_ctx()
337 nc->ctx_ops = ctx_ops; in ntb_set_ctx()
343 if (ctx_ops->link_event != NULL) in ntb_set_ctx()
344 ctx_ops->link_event(ctx); in ntb_set_ctx()
351 ntb_get_ctx(device_t ntb, const struct ntb_ctx_ops **ctx_ops) in ntb_get_ctx() argument
355 KASSERT(nc->ctx != NULL && nc->ctx_ops != NULL, ("bogus")); in ntb_get_ctx()
356 if (ctx_ops != NULL) in ntb_get_ctx()
357 *ctx_ops = nc->ctx_ops; in ntb_get_ctx()
368 nc->ctx_ops = NULL; in ntb_clear_ctx()