Lines Matching refs:m_logbsize
227 mp->m_logbsize = -1; in xfs_parseargs()
245 if (suffix_kstrtoint(args, 10, &mp->m_logbsize)) in xfs_parseargs()
437 if (mp->m_logbsize != -1 && in xfs_parseargs()
438 mp->m_logbsize != 0 && in xfs_parseargs()
439 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE || in xfs_parseargs()
440 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE || in xfs_parseargs()
441 !is_power_of_2(mp->m_logbsize))) { in xfs_parseargs()
444 mp->m_logbsize); in xfs_parseargs()
515 if (mp->m_logbsize > 0) in xfs_showargs()
516 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10); in xfs_showargs()
1424 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
1426 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1427 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
1428 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
1435 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()