diff options
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 0b02c6443551..4184085d44af 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -900,7 +900,7 @@ xfs_log_move_tail(xfs_mount_t *mp, | |||
900 | int | 900 | int |
901 | xfs_log_need_covered(xfs_mount_t *mp) | 901 | xfs_log_need_covered(xfs_mount_t *mp) |
902 | { | 902 | { |
903 | int needed = 0, gen; | 903 | int needed = 0; |
904 | xlog_t *log = mp->m_log; | 904 | xlog_t *log = mp->m_log; |
905 | 905 | ||
906 | if (!xfs_fs_writable(mp)) | 906 | if (!xfs_fs_writable(mp)) |
@@ -909,7 +909,7 @@ xfs_log_need_covered(xfs_mount_t *mp) | |||
909 | spin_lock(&log->l_icloglock); | 909 | spin_lock(&log->l_icloglock); |
910 | if (((log->l_covered_state == XLOG_STATE_COVER_NEED) || | 910 | if (((log->l_covered_state == XLOG_STATE_COVER_NEED) || |
911 | (log->l_covered_state == XLOG_STATE_COVER_NEED2)) | 911 | (log->l_covered_state == XLOG_STATE_COVER_NEED2)) |
912 | && !xfs_trans_first_ail(mp, &gen) | 912 | && !xfs_trans_first_ail(mp, NULL) |
913 | && xlog_iclogs_empty(log)) { | 913 | && xlog_iclogs_empty(log)) { |
914 | if (log->l_covered_state == XLOG_STATE_COVER_NEED) | 914 | if (log->l_covered_state == XLOG_STATE_COVER_NEED) |
915 | log->l_covered_state = XLOG_STATE_COVER_DONE; | 915 | log->l_covered_state = XLOG_STATE_COVER_DONE; |