Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/xfs/
Dxfs_super.c187 if (mp->m_logbsize > 0) in xfs_fs_show_options()
188 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10); in xfs_fs_show_options()
959 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
961 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
962 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
963 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
970 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()
1202 if (suffix_kstrtoint(param->string, 10, &parsing_mp->m_logbsize)) in xfs_fc_parse_param()
1388 if (mp->m_logbsize != -1 && in xfs_fc_validate_params()
1389 mp->m_logbsize != 0 && in xfs_fc_validate_params()
[all …]
Dxfs_mount.h128 int m_logbsize; /* size of each log buffer */ member
Dxfs_log.c1241 if (mp->m_logbsize <= 0) in xlog_get_iclog_buffer_size()
1242 mp->m_logbsize = XLOG_BIG_RECORD_BSIZE; in xlog_get_iclog_buffer_size()
1245 log->l_iclog_size = mp->m_logbsize; in xlog_get_iclog_buffer_size()
1251 DIV_ROUND_UP(mp->m_logbsize, XLOG_HEADER_CYCLE_SIZE); in xlog_get_iclog_buffer_size()
Dxfs_log_recover.c2987 if (h_len > h_size && h_len <= log->l_mp->m_logbsize && in xlog_do_recovery_pass()
2991 h_size, log->l_mp->m_logbsize); in xlog_do_recovery_pass()
2992 h_size = log->l_mp->m_logbsize; in xlog_do_recovery_pass()