Browse Source

METADATA_CSUM: ext4_extent_full: do not do checksum on extent root.

pull/11/head
ngkaho1234 9 years ago
parent
commit
f60d62d6cd
  1. 6
      lwext4/ext4_extent_full.c

6
lwext4/ext4_extent_full.c

@ -348,12 +348,12 @@ static void ext4_extent_block_csum_set(struct ext4_inode_ref *inode_ref,
static int ext4_ext_dirty(struct ext4_inode_ref *inode_ref,
struct ext4_extent_path *path)
{
if (path->block.lb_id)
if (path->block.lb_id) {
ext4_extent_block_csum_set(inode_ref, path->header);
path->block.dirty = true;
else
} else
inode_ref->dirty = true;
ext4_extent_block_csum_set(inode_ref, path->header);
return EOK;
}

Loading…
Cancel
Save