Home
last modified time | relevance | path

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

/Linux-v4.19/fs/xfs/
Dxfs_super.c210 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()
[all …]
Dxfs_log.c1320 if (mp->m_logbsize > 0) { in xlog_get_iclog_buffer_size()
1321 size = log->l_iclog_size = mp->m_logbsize; in xlog_get_iclog_buffer_size()
1333 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE; in xlog_get_iclog_buffer_size()
1334 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE) in xlog_get_iclog_buffer_size()
1339 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE); in xlog_get_iclog_buffer_size()
1358 if (mp->m_logbsize == 0) in xlog_get_iclog_buffer_size()
1359 mp->m_logbsize = log->l_iclog_size; in xlog_get_iclog_buffer_size()
Dxfs_mount.h89 int m_logbsize; /* size of each log buffer */ member
Dxfs_log_recover.c5366 if (h_len <= log->l_mp->m_logbsize && in xlog_do_recovery_pass()
5370 h_size, log->l_mp->m_logbsize); in xlog_do_recovery_pass()
5371 h_size = log->l_mp->m_logbsize; in xlog_do_recovery_pass()