The patch titled Subject: math: RATIONAL_KUNIT_TEST should depend on RATIONAL instead of selecting it has been added to the -mm tree. Its filename is math-rational_kunit_test-should-depend-on-rational-instead-of-selecting-it.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/math-rational_kunit_test-should-depend-on-rational-instead-of-selecting-it.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/math-rational_kunit_test-should-depend-on-rational-instead-of-selecting-it.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Subject: math: RATIONAL_KUNIT_TEST should depend on RATIONAL instead of selecting it RATIONAL_KUNIT_TEST selects RATIONAL, thus enabling an optional feature the user may not want to have enabled. Fix this by making the test depend on RATIONAL instead. Link: https://lkml.kernel.org/r/20210706100945.3803694-3-geert@xxxxxxxxxxxxxx Fixes: b6c75c4afceb8bc0 ("lib/math/rational: add Kunit test cases") Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Brendan Higgins <brendanhiggins@xxxxxxxxxx> Cc: Colin Ian King <colin.king@xxxxxxxxxxxxx> Cc: Trent Piepho <tpiepho@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/Kconfig.debug | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/lib/Kconfig.debug~math-rational_kunit_test-should-depend-on-rational-instead-of-selecting-it +++ a/lib/Kconfig.debug @@ -2463,8 +2463,7 @@ config SLUB_KUNIT_TEST config RATIONAL_KUNIT_TEST tristate "KUnit test for rational.c" if !KUNIT_ALL_TESTS - depends on KUNIT - select RATIONAL + depends on KUNIT && RATIONAL default KUNIT_ALL_TESTS help This builds the rational math unit test. _ Patches currently in -mm which might be from geert@xxxxxxxxxxxxxx are math-make-rational-tristate.patch math-rational_kunit_test-should-depend-on-rational-instead-of-selecting-it.patch