From: Randy Dunlap Date: Sun, 20 Jul 2025 01:04:56 +0000 (-0700) Subject: io_uring: fix breakage in EXPERT menu X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1fbe1ebf4a12cabd7945335d5e47718cb2bef99;p=thirdparty%2Fkernel%2Flinux.git io_uring: fix breakage in EXPERT menu 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 Cc: Jens Axboe Cc: Andrew Morton Cc: Masahiro Yamada Cc: io-uring@vger.kernel.org Link: https://lore.kernel.org/r/20250720010456.2945344-1-rdunlap@infradead.org Signed-off-by: Jens Axboe --- diff --git a/init/Kconfig b/init/Kconfig index c40a7c65fb4c2..0fa05ba08442d 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -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.