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_sb.h152 __uint32_t sb_logsunit; /* stripe unit size for the log */ member
223 __be32 sb_logsunit; /* stripe unit size for the log */ member
Dxfs_log.c1435 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) { in xlog_sync()
1443 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 && in xlog_sync()
1444 roundoff < log->l_mp->m_sb.sb_logsunit) in xlog_sync()
1446 (log->l_mp->m_sb.sb_logsunit <= 1 && in xlog_sync()
2766 log->l_mp->m_sb.sb_logsunit > 1) { in xlog_state_switch_iclogs()
2767 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit); in xlog_state_switch_iclogs()
3228 log->l_mp->m_sb.sb_logsunit > 1) { in xlog_ticket_alloc()
3230 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit; in xlog_ticket_alloc()
Dxfs_super.c1248 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) { in xfs_finish_flags()
1249 mp->m_logbsize = mp->m_sb.sb_logsunit; in xfs_finish_flags()
1251 mp->m_logbsize < mp->m_sb.sb_logsunit) { in xfs_finish_flags()
Dxfs_mount.c108 { offsetof(xfs_sb_t, sb_logsunit), 0 },
604 to->sb_logsunit = be32_to_cpu(from->sb_logsunit); in xfs_sb_from_disk()
Dxfs_fsops.c113 geo->logsunit = mp->m_sb.sb_logsunit; in xfs_fs_geometry()