Home
last modified time | relevance | path

Searched refs:tic (Results 1 – 6 of 6) sorted by relevance

/linux/fs/xfs/
H A Dxfs_log.c147 struct xlog_ticket *tic; in xlog_grant_head_wake_all() local
150 list_for_each_entry(tic, &head->waiters, t_queue) in xlog_grant_head_wake_all()
151 wake_up_process(tic->t_task); in xlog_grant_head_wake_all()
159 struct xlog_ticket *tic) in xlog_ticket_reservation() argument
162 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV); in xlog_ticket_reservation()
163 return tic->t_unit_res; in xlog_ticket_reservation()
166 if (tic->t_flags & XLOG_TIC_PERM_RESERV) in xlog_ticket_reservation()
167 return tic->t_unit_res * tic->t_cnt; in xlog_ticket_reservation()
169 return tic->t_unit_res; in xlog_ticket_reservation()
178 struct xlog_ticket *tic; in xlog_grant_head_wake() local
[all …]
H A Dxfs_log_cil.c37 struct xlog_ticket *tic; in xlog_cil_ticket_alloc() local
39 tic = xlog_ticket_alloc(log, 0, 1, 0); in xlog_cil_ticket_alloc()
45 tic->t_curr_res = 0; in xlog_cil_ticket_alloc()
46 tic->t_iclog_hdrs = 0; in xlog_cil_ticket_alloc()
47 return tic; in xlog_cil_ticket_alloc()
1238 struct xlog_ticket *tic = ctx->ticket; in xlog_cil_build_trans_hdr() local
1239 __be32 tid = cpu_to_be32(tic->t_tid); in xlog_cil_build_trans_hdr()
1261 hdr->thdr.th_tid = tic->t_tid; in xlog_cil_build_trans_hdr()
1274 tic->t_curr_res -= lvhdr->lv_bytes; in xlog_cil_build_trans_hdr()
H A Dxfs_trace.h1527 TP_PROTO(struct xlog *log, struct xlog_ticket *tic),
1528 TP_ARGS(log, tic),
1531 __field(unsigned long, tic)
1548 __entry->tic = (unsigned long)tic;
1549 __entry->ocnt = tic->t_ocnt;
1550 __entry->cnt = tic->t_cnt;
1551 __entry->curr_res = tic->t_curr_res;
1552 __entry->unit_res = tic->t_unit_res;
1553 __entry->flags = tic->t_flags;
1571 __entry->tic,
[all …]
/linux/drivers/s390/cio/
H A Dvfio_ccw_cp.c404 static int tic_target_chain_exists(struct ccw1 *tic, struct channel_program *cp) in tic_target_chain_exists() argument
411 if (is_cpa_within_range(tic->cda, ccw_head, chain->ch_len)) in tic_target_chain_exists()
467 struct ccw1 *tic; in ccwchain_loop_tic() local
471 tic = &chain->ch_ccw[i]; in ccwchain_loop_tic()
473 if (!ccw_is_tic(tic)) in ccwchain_loop_tic()
477 if (tic_target_chain_exists(tic, cp)) in ccwchain_loop_tic()
481 ret = ccwchain_handle_ccw(tic->cda, cp); in ccwchain_loop_tic()
/linux/drivers/tty/serial/
H A Dsunsab.h64 u8 tic; /* Transmit Immediate Character */ member
H A Dsunsab.c481 writeb(ch, &up->regs->w.tic); in sunsab_send_xchar()
852 writeb(c, &up->regs->w.tic); in sunsab_console_putchar()