Lines Matching refs:m_logbsize
210 mp->m_logbsize = -1; in xfs_parseargs()
228 if (suffix_kstrtoint(args, 10, &mp->m_logbsize)) in xfs_parseargs()
416 if (mp->m_logbsize != -1 && in xfs_parseargs()
417 mp->m_logbsize != 0 && in xfs_parseargs()
418 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE || in xfs_parseargs()
419 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE || in xfs_parseargs()
420 !is_power_of_2(mp->m_logbsize))) { in xfs_parseargs()
423 mp->m_logbsize); in xfs_parseargs()
493 if (mp->m_logbsize > 0) in xfs_showargs()
494 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10); in xfs_showargs()
1442 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
1444 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1445 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
1446 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
1453 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()