Lines Matching defs:fc_ctx
2212 struct spdk_nvmf_fc_qpair_remove_ctx *fc_ctx = arg;
2214 if (fc_ctx->cb_fn) {
2215 spdk_thread_send_msg(fc_ctx->qpair_thread, fc_ctx->cb_fn, fc_ctx->cb_ctx);
2217 free(fc_ctx);
2223 struct spdk_nvmf_fc_qpair_remove_ctx *fc_ctx = arg;
2224 struct spdk_nvmf_qpair *qpair = fc_ctx->qpair;
2243 nvmf_fc_connection_delete_done_cb, fc_ctx);
2252 nvmf_fc_connection_delete_done_cb(fc_ctx);
2259 struct spdk_nvmf_fc_qpair_remove_ctx *fc_ctx;
2280 fc_ctx = calloc(1, sizeof(struct spdk_nvmf_fc_qpair_remove_ctx));
2281 if (!fc_ctx) {
2290 fc_ctx->qpair = qpair;
2291 fc_ctx->cb_fn = cb_fn;
2292 fc_ctx->cb_ctx = cb_arg;
2293 fc_ctx->qpair_thread = spdk_get_thread();
2295 spdk_thread_send_msg(nvmf_fc_get_main_thread(), _nvmf_fc_close_qpair, fc_ctx);