Home
last modified time | relevance | path

Searched refs:sb_logsunit (Results 1 – 6 of 6) sorted by relevance

/fs/xfs/
Dxfs_log_priv.h43 #define XLOG_BTOLSUNIT(log, b) (((b)+(log)->l_mp->m_sb.sb_logsunit-1) / \
44 (log)->l_mp->m_sb.sb_logsunit)
45 #define XLOG_LSUNITTOB(log, su) ((su) * (log)->l_mp->m_sb.sb_logsunit)
Dxfs_log.c1649 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) { in xlog_sync()
1657 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 && in xlog_sync()
1658 roundoff < log->l_mp->m_sb.sb_logsunit) in xlog_sync()
1660 (log->l_mp->m_sb.sb_logsunit <= 1 && in xlog_sync()
3007 log->l_mp->m_sb.sb_logsunit > 1) { in xlog_state_switch_iclogs()
3008 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit); in xlog_state_switch_iclogs()
3473 log->l_mp->m_sb.sb_logsunit > 1) { in xlog_ticket_alloc()
3475 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit; in xlog_ticket_alloc()
Dxfs_sb.h154 __uint32_t sb_logsunit; /* stripe unit size for the log */ member
239 __be32 sb_logsunit; /* stripe unit size for the log */ member
Dxfs_super.c1359 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()
1360 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1362 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
Dxfs_mount.c111 { offsetof(xfs_sb_t, sb_logsunit), 0 },
612 to->sb_logsunit = be32_to_cpu(from->sb_logsunit); in xfs_sb_from_disk()
Dxfs_fsops.c114 geo->logsunit = mp->m_sb.sb_logsunit; in xfs_fs_geometry()