Btrfs: cleanup extents after we finish logging inode

This is based on Josef's "Btrfs: turbo charge fsync".

We should cleanup those extents after we've finished logging inode,
otherwise we may do redundant work on them.

Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
This commit is contained in:
Liu Bo 2012-08-27 10:52:19 -06:00 committed by Chris Mason
parent 0fa83cdb1d
commit 06d3d22b45

View file

@ -3167,6 +3167,12 @@ next_slot:
err = ret;
goto out_unlock;
}
} else {
struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
struct extent_map *em, *n;
list_for_each_entry_safe(em, n, &tree->modified_extents, list)
list_del_init(&em->list);
}
if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {