aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fusionio.com>2013-10-11 14:44:09 -0400
committerChris Mason <chris.mason@fusionio.com>2013-11-11 21:57:30 -0500
commitaaedb55bc08f384b7f57dbb3222a511baed4decf (patch)
treea82118fce66fff847e3412eae4ef7c3c3dc5c616 /fs/btrfs/super.c
parentBtrfs: add tests for find_lock_delalloc_range (diff)
downloadlinux-dev-aaedb55bc08f384b7f57dbb3222a511baed4decf.tar.xz
linux-dev-aaedb55bc08f384b7f57dbb3222a511baed4decf.zip
Btrfs: add tests for btrfs_get_extent
I'm going to be removing hole extents in the near future so I wanted to make a sanity test for btrfs_get_extent to make sure I don't break anything in the meantime. This patch just puts btrfs_get_extent through its paces by giving it a completely unreasonable mapping to look at and make sure it is giving us back maps that make sense. Thanks, Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 78041e34d15a..1f62c1ccab1f 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -1802,6 +1802,9 @@ static int btrfs_run_sanity_tests(void)
if (ret)
goto out;
ret = btrfs_test_extent_io();
+ if (ret)
+ goto out;
+ ret = btrfs_test_inodes();
out:
btrfs_destroy_test_fs();
return ret;