Lines Matching refs:unit_bytes
434 int unit_bytes, in xfs_log_reserve() argument
454 tic = xlog_ticket_alloc(log, unit_bytes, cnt, client, permanent, in xfs_log_reserve()
3553 int unit_bytes) in xfs_log_calc_unit_res() argument
3591 unit_bytes += sizeof(xlog_op_header_t); in xfs_log_calc_unit_res()
3592 unit_bytes += sizeof(xfs_trans_header_t); in xfs_log_calc_unit_res()
3595 unit_bytes += sizeof(xlog_op_header_t); in xfs_log_calc_unit_res()
3615 num_headers = howmany(unit_bytes, iclog_space); in xfs_log_calc_unit_res()
3618 unit_bytes += sizeof(xlog_op_header_t) * num_headers; in xfs_log_calc_unit_res()
3622 howmany(unit_bytes, iclog_space) > num_headers) { in xfs_log_calc_unit_res()
3623 unit_bytes += sizeof(xlog_op_header_t); in xfs_log_calc_unit_res()
3626 unit_bytes += log->l_iclog_hsize * num_headers; in xfs_log_calc_unit_res()
3629 unit_bytes += log->l_iclog_hsize; in xfs_log_calc_unit_res()
3634 unit_bytes += 2 * mp->m_sb.sb_logsunit; in xfs_log_calc_unit_res()
3637 unit_bytes += 2 * BBSIZE; in xfs_log_calc_unit_res()
3640 return unit_bytes; in xfs_log_calc_unit_res()
3649 int unit_bytes, in xlog_ticket_alloc() argument
3662 unit_res = xfs_log_calc_unit_res(log->l_mp, unit_bytes); in xlog_ticket_alloc()