Home
last modified time | relevance | path

Searched refs:m_logbsize (Results 1 – 3 of 3) sorted by relevance

/fs/xfs/linux-2.6/
Dxfs_super.c207 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()
[all …]
/fs/xfs/
Dxfs_log.c1133 if (mp->m_logbsize > 0) { in xlog_get_iclog_buffer_size()
1134 size = log->l_iclog_size = mp->m_logbsize; in xlog_get_iclog_buffer_size()
1146 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE; in xlog_get_iclog_buffer_size()
1147 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE) in xlog_get_iclog_buffer_size()
1152 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE); in xlog_get_iclog_buffer_size()
1195 if (mp->m_logbsize == 0) in xlog_get_iclog_buffer_size()
1196 mp->m_logbsize = log->l_iclog_size; in xlog_get_iclog_buffer_size()
Dxfs_mount.h250 int m_logbsize; /* size of each log buffer */ member