Searched refs:l_mp (Results 1 – 6 of 6) sorted by relevance
/fs/xfs/ |
D | xfs_log_recover.c | 107 xfs_warn(log->l_mp, "Invalid block length (0x%x) for buffer", in xlog_alloc_buffer() 109 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_HIGH, log->l_mp); in xlog_alloc_buffer() 156 xfs_warn(log->l_mp, in xlog_do_io() 159 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_HIGH, log->l_mp); in xlog_do_io() 169 if (error && !XFS_FORCED_SHUTDOWN(log->l_mp)) { in xlog_do_io() 170 xfs_alert(log->l_mp, in xlog_do_io() 471 xfs_warn(log->l_mp, in xlog_find_verify_log_record() 507 if ((error = xlog_header_check_mount(log->l_mp, head))) in xlog_find_verify_log_record() 517 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) { in xlog_find_verify_log_record() 565 xfs_warn(log->l_mp, "empty log check failed"); in xlog_find_head() [all …]
|
D | xfs_log.c | 276 XFS_STATS_INC(log->l_mp, xs_sleep_logspace); in xlog_grant_head_wait() 1214 xfs_alert(log->l_mp, "xlog_space_left: head behind tail"); in xlog_space_left() 1215 xfs_alert(log->l_mp, in xlog_space_left() 1218 xfs_alert(log->l_mp, in xlog_space_left() 1248 if (XFS_TEST_ERROR(error, log->l_mp, XFS_ERRTAG_IODONE_IOERR)) { in xlog_ioend_work() 1249 xfs_alert(log->l_mp, "log I/O error %d", error); in xlog_ioend_work() 1250 xfs_force_shutdown(log->l_mp, SHUTDOWN_LOG_IO_ERROR); in xlog_ioend_work() 1321 struct xfs_mount *mp = log->l_mp; in xfs_log_worker() 1373 log->l_mp = mp; in xlog_alloc_log() 1456 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1); in xlog_alloc_log() [all …]
|
D | xfs_log_cil.c | 451 xfs_warn(log->l_mp, "Transaction log reservation overrun:"); in xlog_cil_insert_items() 452 xfs_warn(log->l_mp, in xlog_cil_insert_items() 455 xfs_warn(log->l_mp, " split region headers: %d bytes", in xlog_cil_insert_items() 457 xfs_warn(log->l_mp, " ctx ticket: %d bytes", ctx_res); in xlog_cil_insert_items() 484 xfs_force_shutdown(log->l_mp, SHUTDOWN_LOG_IO_ERROR); in xlog_cil_insert_items() 506 struct xfs_mount *mp = ctx->cil->xc_log->l_mp; in xlog_discard_endio_work() 580 struct xfs_mount *mp = ctx->cil->xc_log->l_mp; in xlog_cil_committed() 845 commit_lsn = xfs_log_done(log->l_mp, tic, &commit_iclog, false); in xlog_cil_push() 870 return xfs_log_release_iclog(log->l_mp, commit_iclog); in xlog_cil_push() 923 queue_work(log->l_mp->m_cil_workqueue, &cil->xc_push_work); in xlog_cil_push_background() [all …]
|
D | xfs_log_priv.h | 352 struct xfs_mount *l_mp; /* mount point */ member
|
D | xfs_trace.h | 951 __entry->dev = log->l_mp->m_super->s_dev; 1113 __entry->dev = log->l_mp->m_super->s_dev; 1958 __entry->dev = log->l_mp->m_super->s_dev; 1978 __entry->dev = log->l_mp->m_super->s_dev; 2005 __entry->dev = log->l_mp->m_super->s_dev; 2050 __entry->dev = log->l_mp->m_super->s_dev; 2097 __entry->dev = log->l_mp->m_super->s_dev; 2141 __entry->dev = log->l_mp->m_super->s_dev;
|
/fs/xfs/libxfs/ |
D | xfs_log_format.h | 37 #define XLOG_BTOLSUNIT(log, b) (((b)+(log)->l_mp->m_sb.sb_logsunit-1) / \ 38 (log)->l_mp->m_sb.sb_logsunit) 39 #define XLOG_LSUNITTOB(log, su) ((su) * (log)->l_mp->m_sb.sb_logsunit) 47 BTOBB(1 << (xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? \ 50 BTOBB(XLOG_MAX_ICLOGS << (xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? \
|