Lines Matching refs:m_logbsize
198 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()
1434 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
1436 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1437 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
1438 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
1445 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()