diff options
author | Lukas Bulwahn <lukas.bulwahn@redhat.com> | 2024-07-31 09:39:02 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-08-12 22:03:26 +0200 |
commit | 889ced4c9388785952d78d20d338bda2df209bb5 (patch) | |
tree | 1f7459c6b5f0ca52e8dc0cce8c2d226f3b2391bf /fs | |
parent | 64a7ce76fb901bf9f9c36cf5d681328fc0fd4b5a (diff) |
netfs: clean up after renaming FSCACHE_DEBUG config
Commit 6b8e61472529 ("netfs: Rename CONFIG_FSCACHE_DEBUG to
CONFIG_NETFS_DEBUG") renames the config, but introduces two issues: First,
NETFS_DEBUG mistakenly depends on the non-existing config NETFS, whereas
the actual intended config is called NETFS_SUPPORT. Second, the config
renaming misses to adjust the documentation of the functionality of this
config.
Clean up those two points.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
Link: https://lore.kernel.org/r/20240731073902.69262-1-lukas.bulwahn@redhat.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/netfs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/netfs/Kconfig b/fs/netfs/Kconfig index 1b78e8b65ebc..7701c037c328 100644 --- a/fs/netfs/Kconfig +++ b/fs/netfs/Kconfig @@ -24,7 +24,7 @@ config NETFS_STATS config NETFS_DEBUG bool "Enable dynamic debugging netfslib and FS-Cache" - depends on NETFS + depends on NETFS_SUPPORT help This permits debugging to be dynamically enabled in the local caching management module. If this is set, the debugging output may be |