diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-04-30 07:39:36 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-05-01 15:48:30 -0400 |
commit | cab09a81fbefcb21db5213a84461d421946f6eb8 (patch) | |
tree | aec08aeb1bea636dc555a529b258e10eddc6441d /fs/xfs/xfs_log_recover.c | |
parent | 946217ba28637d7a08e03e93ef40586ce621f557 (diff) |
xfs: fix da node magic number mismatches
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index ecaa4d4ef39f..93f03ec17eec 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c | |||
@@ -2039,7 +2039,7 @@ xlog_recovery_validate_buf_type( | |||
2039 | case XFS_BLFT_ATTR_RMT_BUF: | 2039 | case XFS_BLFT_ATTR_RMT_BUF: |
2040 | if (!xfs_sb_version_hascrc(&mp->m_sb)) | 2040 | if (!xfs_sb_version_hascrc(&mp->m_sb)) |
2041 | break; | 2041 | break; |
2042 | if (magicda != XFS_ATTR3_RMT_MAGIC) { | 2042 | if (magic32 != XFS_ATTR3_RMT_MAGIC) { |
2043 | xfs_warn(mp, "Bad attr remote magic!"); | 2043 | xfs_warn(mp, "Bad attr remote magic!"); |
2044 | ASSERT(0); | 2044 | ASSERT(0); |
2045 | break; | 2045 | break; |
@@ -2135,7 +2135,6 @@ xlog_recover_do_reg_buffer( | |||
2135 | ASSERT(i == item->ri_total); | 2135 | ASSERT(i == item->ri_total); |
2136 | 2136 | ||
2137 | xlog_recovery_validate_buf_type(mp, bp, buf_f); | 2137 | xlog_recovery_validate_buf_type(mp, bp, buf_f); |
2138 | |||
2139 | } | 2138 | } |
2140 | 2139 | ||
2141 | /* | 2140 | /* |