The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [GIT PULL] kunit fixes update for Linux 7.1-rc4
@ 2026-05-11 22:16 Shuah Khan
  2026-05-11 22:42 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2026-05-11 22:16 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: shuah, Shuah Khan, David Gow, Brendan Higgins, Rae Moar,
	linux-kernel, open list:KERNEL SELFTEST FRAMEWORK

[-- Attachment #1: Type: text/plain, Size: 1364 bytes --]

Hi Linus,

Please pull this kunit fixes update for Linux 7.1-rc4

Fix to decouple KUNIT_DEBUGFS and KUNIT_ALL_TESTS options and fix
KUNIT_DEBUGFS dependencies so it depends on DEBUG_FS without which
it will not be useful.

diff is attached.

thanks.
-- Shuah

----------------------------------------------------------------
The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731:

   Linux 7.1-rc1 (2026-04-26 14:19:00 -0700)

are available in the Git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux_kselftest-kunit-fixes-7.1-rc4

for you to fetch changes up to 8f80b5b227ef9ea422080487715c841856339aed:

   kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS (2026-05-04 12:10:40 -0600)

----------------------------------------------------------------
linux_kselftest-kunit-fixes-7.1-rc4

Fix to decouple KUNIT_DEBUGFS and KUNIT_ALL_TESTS options and fix
KUNIT_DEBUGFS dependencies so it depends on DEBUG_FS without which
it will not be useful.

----------------------------------------------------------------
David Gow (2):
       kunit: config: Enable KUNIT_DEBUGFS by default
       kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS

  lib/kunit/Kconfig | 5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------

[-- Attachment #2: linux_kselftest-kunit-fixes-7.1-rc4.diff --]
[-- Type: text/x-patch, Size: 574 bytes --]

diff --git a/lib/kunit/Kconfig b/lib/kunit/Kconfig
index 498cc51e493d..94ff8e4089bf 100644
--- a/lib/kunit/Kconfig
+++ b/lib/kunit/Kconfig
@@ -16,8 +16,9 @@ menuconfig KUNIT
 if KUNIT
 
 config KUNIT_DEBUGFS
-	bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation" if !KUNIT_ALL_TESTS
-	default KUNIT_ALL_TESTS
+	bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation"
+	depends on DEBUG_FS
+	default y
 	help
 	  Enable debugfs representation for kunit.  Currently this consists
 	  of /sys/kernel/debug/kunit/<test_suite>/results files for each

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-05-11 22:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 22:16 [GIT PULL] kunit fixes update for Linux 7.1-rc4 Shuah Khan
2026-05-11 22:42 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox