Skip to content

Commit d1fbe1e

Browse files
rddunlapaxboe
authored andcommitted
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: 1802656 ("io_uring: add GCOV_PROFILE_URING Kconfig option") Signed-off-by: Randy Dunlap <[email protected]> Cc: Jens Axboe <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Masahiro Yamada <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
1 parent 2e6dbb2 commit d1fbe1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

init/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ config IO_URING
17901790

17911791
config GCOV_PROFILE_URING
17921792
bool "Enable GCOV profiling on the io_uring subsystem"
1793-
depends on GCOV_KERNEL
1793+
depends on IO_URING && GCOV_KERNEL
17941794
help
17951795
Enable GCOV profiling on the io_uring subsystem, to facilitate
17961796
code coverage testing.

0 commit comments

Comments
 (0)