Lines Matching refs:m_logbsize
207 mp->m_logbsize = -1; in xfs_parseargs()
233 mp->m_logbsize = suffix_strtoul(value, &eov, 10); in xfs_parseargs()
484 if (mp->m_logbsize != -1 && in xfs_parseargs()
485 mp->m_logbsize != 0 && in xfs_parseargs()
486 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE || in xfs_parseargs()
487 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE || in xfs_parseargs()
488 !is_power_of_2(mp->m_logbsize))) { in xfs_parseargs()
491 mp->m_logbsize); in xfs_parseargs()
568 if (mp->m_logbsize > 0) in xfs_showargs()
569 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10); in xfs_showargs()
1368 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
1370 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1371 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
1372 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
1379 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()