]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
metadump: check for non-zero inode alignment
authorBrian Foster <bfoster@redhat.com>
Tue, 24 Feb 2015 00:20:31 +0000 (11:20 +1100)
committerDave Chinner <david@fromorbit.com>
Tue, 24 Feb 2015 00:20:31 +0000 (11:20 +1100)
The copy_inode_chunk() function performs some basic sanity checks on the
inode record, block number, etc. One of these checks includes whether
the inode chunk is aligned according to sb_inoalignmt. sb_inoalignment
can equal 0 with larger block sizes. This results in a mod-by-zero,
"badly aligned inode ..." warnings and skipped inodes in metadump
images. This can be reproduced with a '-m crc=1,finobt=1 -b size=64k' fs
on ppc64.

Update copy_inode_chunk() to only enforce the inode alignment check when
sb_inoalignmt is non-zero.

Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
db/metadump.c

index 6bd10a8a857facd770176dc73d7e091e021b5ceb..a5995717f0c789dd20f30ee7a9402f2405ac0fbb 100644 (file)
@@ -1865,6 +1865,7 @@ copy_inode_chunk(
                        (mp->m_sb.sb_inopblock > XFS_INODES_PER_CHUNK &&
                                        off % XFS_INODES_PER_CHUNK != 0) ||
                        (xfs_sb_version_hasalign(&mp->m_sb) &&
+                                       mp->m_sb.sb_inoalignmt != 0 &&
                                        agbno % mp->m_sb.sb_inoalignmt != 0)) {
                if (show_warnings)
                        print_warning("badly aligned inode (start = %llu)",