diff options
author | Geert Uytterhoeven <[email protected]> | 2021-01-22 12:02:34 +0100 |
---|---|---|
committer | Theodore Ts'o <[email protected]> | 2021-02-11 23:12:59 -0500 |
commit | 302fdadeafe4be539f247abf25f61822e4a5a577 (patch) | |
tree | 0fe91f005298e52c7e350b7d24629c2810099812 | |
parent | 3258386aba670e3406a499d2d0b7395e14c8d097 (diff) |
ext: EXT4_KUNIT_TESTS should depend on EXT4_FS instead of selecting it
EXT4_KUNIT_TESTS selects EXT4_FS, thus enabling an optional feature the
user may not want to enable. Fix this by making the test depend on
EXT4_FS instead.
Fixes: 1cbeab1b242d16fd ("ext4: add kunit test for decoding extended timestamps")
Reviewed-by: Randy Dunlap <[email protected]>
Signed-off-by: Geert Uytterhoeven <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Theodore Ts'o <[email protected]>
-rw-r--r-- | fs/ext4/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/Kconfig b/fs/ext4/Kconfig index 619dd35ddd48..86699c8cab28 100644 --- a/fs/ext4/Kconfig +++ b/fs/ext4/Kconfig @@ -103,8 +103,7 @@ config EXT4_DEBUG config EXT4_KUNIT_TESTS tristate "KUnit tests for ext4" if !KUNIT_ALL_TESTS - select EXT4_FS - depends on KUNIT + depends on EXT4_FS && KUNIT default KUNIT_ALL_TESTS help This builds the ext4 KUnit tests. |