This patchset fixes mainly two problems in fiemap in ext4. First of all we could hit BUG_ON() if the extent tree is changed while we are traversing it. This particular problem has been revealed by xfstest 225 on s390x architecture. The other problem is that we potentially might miss some delayed extents with fiemap if they are written after we've searched the extent tree and before we're going to search for delayed extent in extent status tree. Both problems are fixed by the first patch of the patch set. The second contains just some cleanups. This has been based on top of the ext4 git tree containing extent status tree. It has been tested with xfstests on s390x. Please review carefully since fiemap bugs might cause problems with cp possibly corrupting user data. Thanks! -Lukas --- [PATCH 1/2 v5] ext4: Prevent race while walking extent tree [PATCH 2/2 v5] ext4: simple cleanup in fiemap codepath fs/ext4/ext4_extents.h | 14 ---- fs/ext4/extents.c | 156 ++++++++++++++++++++++++++--------------------- 2 files changed, 86 insertions(+), 84 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html