Home
last modified time | relevance | path

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

/Linux-v5.4/fs/xfs/
Dxfs_super.c198 mp->m_logbsize = -1; in xfs_parseargs()
216 if (suffix_kstrtoint(args, 10, &mp->m_logbsize)) in xfs_parseargs()
401 if (mp->m_logbsize != -1 && in xfs_parseargs()
402 mp->m_logbsize != 0 && in xfs_parseargs()
403 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE || in xfs_parseargs()
404 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE || in xfs_parseargs()
405 !is_power_of_2(mp->m_logbsize))) { in xfs_parseargs()
408 mp->m_logbsize); in xfs_parseargs()
478 if (mp->m_logbsize > 0) in xfs_showargs()
479 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10); in xfs_showargs()
[all …]
Dxfs_mount.h110 int m_logbsize; /* size of each log buffer */ member
Dxfs_log.c1288 if (mp->m_logbsize <= 0) in xlog_get_iclog_buffer_size()
1289 mp->m_logbsize = XLOG_BIG_RECORD_BSIZE; in xlog_get_iclog_buffer_size()
1292 log->l_iclog_size = mp->m_logbsize; in xlog_get_iclog_buffer_size()
1298 DIV_ROUND_UP(mp->m_logbsize, XLOG_HEADER_CYCLE_SIZE); in xlog_get_iclog_buffer_size()
Dxfs_log_recover.c5293 if (h_len <= log->l_mp->m_logbsize && in xlog_do_recovery_pass()
5297 h_size, log->l_mp->m_logbsize); in xlog_do_recovery_pass()
5298 h_size = log->l_mp->m_logbsize; in xlog_do_recovery_pass()