diff options
author | Lukas Bulwahn <lukas.bulwahn@gmail.com> | 2023-08-25 14:05:13 +0200 |
---|---|---|
committer | Chandan Babu R <chandanbabu@kernel.org> | 2023-09-11 11:22:23 +0200 |
commit | 57c0f4a8ea3a206c313bf6b0992f6fdc084e66e7 (patch) | |
tree | 7d22795a6baef1a3ae58dd999b7b2a7ac31a7e71 /fs/xfs | |
parent | Linux 6.6-rc1 (diff) | |
download | linux-57c0f4a8ea3a206c313bf6b0992f6fdc084e66e7.tar.xz linux-57c0f4a8ea3a206c313bf6b0992f6fdc084e66e7.zip |
xfs: fix select in config XFS_ONLINE_SCRUB_STATS
Commit d7a74cad8f45 ("xfs: track usage statistics of online fsck")
introduces config XFS_ONLINE_SCRUB_STATS, which selects the non-existing
config FS_DEBUG. It is probably intended to select the existing config
XFS_DEBUG.
Fix the select in config XFS_ONLINE_SCRUB_STATS.
Fixes: d7a74cad8f45 ("xfs: track usage statistics of online fsck")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/Kconfig b/fs/xfs/Kconfig index c9d653168ad0..ed0bc8cbc703 100644 --- a/fs/xfs/Kconfig +++ b/fs/xfs/Kconfig @@ -147,7 +147,7 @@ config XFS_ONLINE_SCRUB_STATS bool "XFS online metadata check usage data collection" default y depends on XFS_ONLINE_SCRUB - select FS_DEBUG + select XFS_DEBUG help If you say Y here, the kernel will gather usage data about the online metadata check subsystem. This includes the number |