All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] KUnit fixes update for Linux 6.0-rc3
@ 2022-08-22 22:08 Shuah Khan
  2022-08-23 20:42 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2022-08-22 22:08 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Shuah Khan, Brendan Higgins, linux-kselftest, linux-kernel

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

Hi Linus,

Please pull the following KUnit fixes update for Linux 6.0-rc3.

This KUnit fixes update for Linux 6.0-rc3 consists of fixes to mmc
test and fix to load .kunit_test_suites section when CONFIG_KUNIT=m,
and not just when KUnit is built-in.

Please note that this KUnit update touches mmc driver Kconfig and
kernel/module/main.c.

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------
The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:

   Linux 6.0-rc1 (2022-08-14 15:50:18 -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-6.0-rc3

for you to fetch changes up to 41a55567b9e31cb852670684404654ec4fd0d8d6:

   module: kunit: Load .kunit_test_suites section when CONFIG_KUNIT=m (2022-08-15 13:51:07 -0600)

----------------------------------------------------------------
linux-kselftest-kunit-fixes-6.0-rc3

This KUnit fixes update for Linux 6.0-rc3 consists of fixes to mmc
test and fix to load .kunit_test_suites section when CONFIG_KUNIT=m,
and not just when KUnit is built-in.

----------------------------------------------------------------
David Gow (2):
       mmc: sdhci-of-aspeed: test: Fix dependencies when KUNIT=m
       module: kunit: Load .kunit_test_suites section when CONFIG_KUNIT=m

  drivers/mmc/host/Kconfig | 1 +
  kernel/module/main.c     | 2 +-
  2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------

[-- Attachment #2: linux-kselftest-kunit-fixes-6.0-rc3.diff --]
[-- Type: text/x-patch, Size: 1032 bytes --]

diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index 10c563999d3d..e63608834411 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -171,6 +171,7 @@ config MMC_SDHCI_OF_ASPEED
 config MMC_SDHCI_OF_ASPEED_TEST
 	bool "Tests for the ASPEED SDHCI driver" if !KUNIT_ALL_TESTS
 	depends on MMC_SDHCI_OF_ASPEED && KUNIT
+	depends on (MMC_SDHCI_OF_ASPEED=m || KUNIT=y)
 	default KUNIT_ALL_TESTS
 	help
 	  Enable KUnit tests for the ASPEED SDHCI driver. Select this
diff --git a/kernel/module/main.c b/kernel/module/main.c
index 6a477c622544..a4e4d84b6f4e 100644
--- a/kernel/module/main.c
+++ b/kernel/module/main.c
@@ -2099,7 +2099,7 @@ static int find_module_sections(struct module *mod, struct load_info *info)
 					      sizeof(*mod->static_call_sites),
 					      &mod->num_static_call_sites);
 #endif
-#ifdef CONFIG_KUNIT
+#if IS_ENABLED(CONFIG_KUNIT)
 	mod->kunit_suites = section_objs(info, ".kunit_test_suites",
 					      sizeof(*mod->kunit_suites),
 					      &mod->num_kunit_suites);

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

* Re: [GIT PULL] KUnit fixes update for Linux 6.0-rc3
  2022-08-22 22:08 [GIT PULL] KUnit fixes update for Linux 6.0-rc3 Shuah Khan
@ 2022-08-23 20:42 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-08-23 20:42 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Linus Torvalds, Shuah Khan, Brendan Higgins, linux-kselftest,
	linux-kernel

The pull request you sent on Mon, 22 Aug 2022 16:08:31 -0600:

> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-kunit-fixes-6.0-rc3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6234806f8c9fe93f8db99cb47fc079ce78aabbd5

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2022-08-23 20:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-22 22:08 [GIT PULL] KUnit fixes update for Linux 6.0-rc3 Shuah Khan
2022-08-23 20:42 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.