Home
last modified time | relevance | path

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

/linux-6.15/fs/xfs/
H A Dxfs_log.c3142 uint num_headers; in xlog_calc_unit_res() local
3200 num_headers = howmany(unit_bytes, iclog_space); in xlog_calc_unit_res()
3203 unit_bytes += sizeof(xlog_op_header_t) * num_headers; in xlog_calc_unit_res()
3206 while (!num_headers || in xlog_calc_unit_res()
3207 howmany(unit_bytes, iclog_space) > num_headers) { in xlog_calc_unit_res()
3209 num_headers++; in xlog_calc_unit_res()
3211 unit_bytes += log->l_iclog_hsize * num_headers; in xlog_calc_unit_res()
3220 *niclogs = num_headers; in xlog_calc_unit_res()