diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2019-04-01 13:53:57 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-07-05 11:22:11 -0400 |
commit | 75f2d86b20bf6aec0392d6dd2ae3ffff26d2ae0e (patch) | |
tree | f5d74fbe75722443ca1aee816aa319985d8ea7f7 /fs | |
parent | 570d7a98e7d6d5d8706d94ffd2d40adeaa318332 (diff) | |
download | linux-75f2d86b20bf6aec0392d6dd2ae3ffff26d2ae0e.tar.bz2 |
fs: VALIDATE_FS_PARSER should default to n
CONFIG_VALIDATE_FS_PARSER is a debugging tool to check that the parser
tables are vaguely sane. It was set to default to 'Y' for the moment to
catch errors in upcoming fs conversion development.
Make sure it is not enabled by default in the final release of v5.1.
Fixes: 31d921c7fb969172 ("vfs: Add configuration parser helpers")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index f1046cf6ad85..bfb1c6095c7a 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -11,7 +11,6 @@ config DCACHE_WORD_ACCESS config VALIDATE_FS_PARSER bool "Validate filesystem parameter description" - default y help Enable this to perform validation of the parameter description for a filesystem when it is registered. |