Lines Matching refs:m_logbsize
213 mp->m_logbsize = -1; in xfs_parseargs()
238 if (suffix_kstrtoint(value, 10, &mp->m_logbsize)) in xfs_parseargs()
426 if (mp->m_logbsize != -1 && in xfs_parseargs()
427 mp->m_logbsize != 0 && in xfs_parseargs()
428 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE || in xfs_parseargs()
429 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE || in xfs_parseargs()
430 !is_power_of_2(mp->m_logbsize))) { in xfs_parseargs()
433 mp->m_logbsize); in xfs_parseargs()
503 if (mp->m_logbsize > 0) in xfs_showargs()
504 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10); in xfs_showargs()
1334 if (mp->m_logbsize <= 0 && in xfs_finish_flags()
1336 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1337 } else if (mp->m_logbsize > 0 && in xfs_finish_flags()
1338 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
1345 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()