diff options
author | Josef Bacik <jbacik@fusionio.com> | 2013-03-15 09:47:08 -0400 |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-05-06 15:52:54 -0400 |
commit | 74255aa07d292385ca3a4a4e8f0bc492d9bdd116 (patch) | |
tree | 02ee09448bbb988baf59bed8615a9f0dcc608a5a /fs/btrfs/Kconfig | |
parent | e75206cfdc89f4b5361776443acba4c940770b30 (diff) | |
download | kernel_goldelico_gta04-74255aa07d292385ca3a4a4e8f0bc492d9bdd116.zip kernel_goldelico_gta04-74255aa07d292385ca3a4a4e8f0bc492d9bdd116.tar.gz kernel_goldelico_gta04-74255aa07d292385ca3a4a4e8f0bc492d9bdd116.tar.bz2 |
Btrfs: add some free space cache tests
We keep hitting bugs in the tree log replay because btrfs_remove_free_space
doesn't account for some corner case. So add a bunch of tests to try and fully
test btrfs_remove_free_space since the only time it is called is during tree log
replay. These tests all finish successfully, so as we find more of these bugs
we need to add to these tests to make sure we don't regress in fixing things.
I've hidden the tests behind a Kconfig option, but they take no time to run so
all btrfs developers should have this turned on all the time. Thanks,
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/Kconfig')
-rw-r--r-- | fs/btrfs/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/btrfs/Kconfig b/fs/btrfs/Kconfig index 9a8622a..d5bfcb7 100644 --- a/fs/btrfs/Kconfig +++ b/fs/btrfs/Kconfig @@ -52,3 +52,14 @@ config BTRFS_FS_CHECK_INTEGRITY In most cases, unless you are a btrfs developer who needs to verify the integrity of (super)-block write requests during the run of a regression test, say N + +config BTRFS_FS_RUN_SANITY_TESTS + bool "Btrfs will run sanity tests upon loading" + depends on BTRFS_FS + help + This will run some basic sanity tests on the free space cache + code to make sure it is acting as it should. These are mostly + regression tests and are only really interesting to btrfs devlopers. + + If unsure, say N. + |