Lines Matching refs:new_ctx
431 struct xfs_cil_ctx *new_ctx; in xlog_cil_push() local
445 new_ctx = kmem_zalloc(sizeof(*new_ctx), KM_SLEEP|KM_NOFS); in xlog_cil_push()
446 new_ctx->ticket = xlog_cil_ticket_alloc(log); in xlog_cil_push()
529 INIT_LIST_HEAD(&new_ctx->committing); in xlog_cil_push()
530 INIT_LIST_HEAD(&new_ctx->busy_extents); in xlog_cil_push()
531 new_ctx->sequence = ctx->sequence + 1; in xlog_cil_push()
532 new_ctx->cil = cil; in xlog_cil_push()
533 cil->xc_ctx = new_ctx; in xlog_cil_push()
561 cil->xc_current_sequence = new_ctx->sequence; in xlog_cil_push()
598 list_for_each_entry(new_ctx, &cil->xc_committing, committing) { in xlog_cil_push()
613 if (new_ctx->sequence >= ctx->sequence) in xlog_cil_push()
615 if (!new_ctx->commit_lsn) { in xlog_cil_push()
653 xfs_log_ticket_put(new_ctx->ticket); in xlog_cil_push()
654 kmem_free(new_ctx); in xlog_cil_push()