The patch titled Subject: maple_tree: allow TEST_MAPLE_TREE only when DEBUG_KERNEL is set has been added to the -mm mm-unstable branch. Its filename is maple_tree-allow-test_maple_tree-only-when-debug_kernel-is-set.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/maple_tree-allow-test_maple_tree-only-when-debug_kernel-is-set.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Subject: maple_tree: allow TEST_MAPLE_TREE only when DEBUG_KERNEL is set Date: Fri, 18 Nov 2022 21:51:17 -0800 Prevent a kconfig warning that is caused by TEST_MAPLE_TREE by adding a "depends on" clause for TEST_MAPLE_TREE since 'select' does not follow any kconfig dependencies. WARNING: unmet direct dependencies detected for DEBUG_MAPLE_TREE Depends on [n]: DEBUG_KERNEL [=n] Selected by [y]: - TEST_MAPLE_TREE [=y] && RUNTIME_TESTING_MENU [=y] Link: https://lkml.kernel.org/r/20221119055117.14094-1-rdunlap@xxxxxxxxxxxxx Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Reported-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Reported-by: kernel test robot <lkp@xxxxxxxxx> Fixes: 120b116208a0 ("maple_tree: reorganize testing to restore module testing") Cc: Liam Howlett <liam.howlett@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/Kconfig.debug | 1 + 1 file changed, 1 insertion(+) --- a/lib/Kconfig.debug~maple_tree-allow-test_maple_tree-only-when-debug_kernel-is-set +++ a/lib/Kconfig.debug @@ -2249,6 +2249,7 @@ config TEST_XARRAY tristate "Test the XArray code at runtime" config TEST_MAPLE_TREE + depends on DEBUG_KERNEL select DEBUG_MAPLE_TREE tristate "Test the Maple Tree code at runtime" _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxxx are maple_tree-allow-test_maple_tree-only-when-debug_kernel-is-set.patch