diff options
author | Christoph Hellwig <hch@lst.de> | 2013-04-21 15:53:46 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-04-21 15:53:46 -0400 |
commit | ee1a47ab0e77600fcbdf1c87d461bd8f3f63150d (patch) | |
tree | 6340d9f4b8b53c0d18045da1372599645375efce /fs/xfs/xfs_log_recover.c | |
parent | a2050646f655a90400cbb66c3866d2e0137eee0c (diff) |
xfs: add support for large btree blocks
Add support for larger btree blocks that contains a CRC32C checksum,
a filesystem uuid and block number for detecting filesystem
consistency and out of place writes.
[dchinner@redhat.com] Also include an owner field to allow reverse
mappings to be implemented for improved repairability and a LSN
field to so that log recovery can easily determine the last
modification that made it to disk for each buffer.
[dchinner@redhat.com] Add buffer log format flags to indicate the
type of buffer to recovery so that we don't have to do blind magic
number tests to determine what the buffer is.
[dchinner@redhat.com] Modified to fit into the verifier structure.
Signed-off-by: Christoph Hellwig <hch@lst.de>
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 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 3ca3380c3afe..3762ce2e99fc 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include "xfs_bmap_btree.h" | 29 | #include "xfs_bmap_btree.h" |
30 | #include "xfs_alloc_btree.h" | 30 | #include "xfs_alloc_btree.h" |
31 | #include "xfs_ialloc_btree.h" | 31 | #include "xfs_ialloc_btree.h" |
32 | #include "xfs_btree.h" | ||
32 | #include "xfs_dinode.h" | 33 | #include "xfs_dinode.h" |
33 | #include "xfs_inode.h" | 34 | #include "xfs_inode.h" |
34 | #include "xfs_inode_item.h" | 35 | #include "xfs_inode_item.h" |
@@ -1928,6 +1929,33 @@ xlog_recover_do_reg_buffer( | |||
1928 | 1929 | ||
1929 | /* Shouldn't be any more regions */ | 1930 | /* Shouldn't be any more regions */ |
1930 | ASSERT(i == item->ri_total); | 1931 | ASSERT(i == item->ri_total); |
1932 | |||
1933 | switch (buf_f->blf_flags & XFS_BLF_TYPE_MASK) { | ||
1934 | case XFS_BLF_BTREE_BUF: | ||
1935 | switch (be32_to_cpu(*(__be32 *)bp->b_addr)) { | ||
1936 | case XFS_ABTB_CRC_MAGIC: | ||
1937 | case XFS_ABTC_CRC_MAGIC: | ||
1938 | case XFS_ABTB_MAGIC: | ||
1939 | case XFS_ABTC_MAGIC: | ||
1940 | bp->b_ops = &xfs_allocbt_buf_ops; | ||
1941 | break; | ||
1942 | case XFS_IBT_CRC_MAGIC: | ||
1943 | case XFS_IBT_MAGIC: | ||
1944 | bp->b_ops = &xfs_inobt_buf_ops; | ||
1945 | break; | ||
1946 | case XFS_BMAP_CRC_MAGIC: | ||
1947 | case XFS_BMAP_MAGIC: | ||
1948 | bp->b_ops = &xfs_bmbt_buf_ops; | ||
1949 | break; | ||
1950 | default: | ||
1951 | xfs_warn(mp, "Bad btree block magic!"); | ||
1952 | ASSERT(0); | ||
1953 | break; | ||
1954 | } | ||
1955 | break; | ||
1956 | default: | ||
1957 | break; | ||
1958 | } | ||
1931 | } | 1959 | } |
1932 | 1960 | ||
1933 | /* | 1961 | /* |