Lines Matching defs:unit_bytes
418 int unit_bytes,
434 tic = xlog_ticket_alloc(log, unit_bytes, cnt, permanent);
3118 int unit_bytes,
3156 unit_bytes += sizeof(xlog_op_header_t);
3157 unit_bytes += sizeof(xfs_trans_header_t);
3160 unit_bytes += sizeof(xlog_op_header_t);
3180 num_headers = howmany(unit_bytes, iclog_space);
3183 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3187 howmany(unit_bytes, iclog_space) > num_headers) {
3188 unit_bytes += sizeof(xlog_op_header_t);
3191 unit_bytes += log->l_iclog_hsize * num_headers;
3194 unit_bytes += log->l_iclog_hsize;
3197 unit_bytes += 2 * log->l_iclog_roundoff;
3201 return unit_bytes;
3207 int unit_bytes)
3209 return xlog_calc_unit_res(mp->m_log, unit_bytes, NULL);
3218 int unit_bytes,
3228 unit_res = xlog_calc_unit_res(log, unit_bytes, &tic->t_iclog_hdrs);