]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
io_uring: fix breakage in EXPERT menu
authorRandy Dunlap <rdunlap@infradead.org>
Sun, 20 Jul 2025 01:04:56 +0000 (18:04 -0700)
committerJens Axboe <axboe@kernel.dk>
Sun, 20 Jul 2025 18:32:54 +0000 (12:32 -0600)
Add a dependency for IO_URING for the GCOV_PROFILE_URING symbol.

Without this patch the EXPERT config menu ends with
"Enable IO uring support" and the menu prompts for
GCOV_PROFILE_URING and IO_URING_MOCK_FILE are not subordinate to it.
This causes all of the EXPERT Kconfig options that follow
GCOV_PROFILE_URING to be display in the "upper" menu (General setup),
just following the EXPERT menu.

Fixes: 1802656ef890 ("io_uring: add GCOV_PROFILE_URING Kconfig option")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: io-uring@vger.kernel.org
Link: https://lore.kernel.org/r/20250720010456.2945344-1-rdunlap@infradead.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
init/Kconfig

index c40a7c65fb4c27d6bdbc60f3db4e06457cbf1ced..0fa05ba08442d8dc1d717a7c30fdeeea5a74ae28 100644 (file)
@@ -1790,7 +1790,7 @@ config IO_URING
 
 config GCOV_PROFILE_URING
        bool "Enable GCOV profiling on the io_uring subsystem"
-       depends on GCOV_KERNEL
+       depends on IO_URING && GCOV_KERNEL
        help
          Enable GCOV profiling on the io_uring subsystem, to facilitate
          code coverage testing.