mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] kselftest next update for Linux 6.18-rc1
@ 2025-09-29 23:07 Shuah Khan
  2025-10-02  4:46 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2025-09-29 23:07 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: shuah, Shuah Khan, linux-kselftest, linux-kernel

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

Hi Linus,

Please pull this kselftest next update for Linux 6.18-rc1.

- Fixes watchdog test to exit when device doesn't support keep alive
- Fix missing header build complaints during out of tree build
- A few minor fixes to git ignore
- MAINTAINERS file change to update dma_map_benchmark

diff is attached.

thanks,
-- Shuah

----------------------------------------------------------------
The following changes since commit f83ec76bf285bea5727f478a68b894f5543ca76e:

   Linux 6.17-rc6 (2025-09-14 14:21:14 -0700)

are available in the Git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux_kselftest-next-6.18-rc1

for you to fetch changes up to 19692013415486febf71343f5cc539a343a2994b:

   MAINTAINERS: add myself and Barry to dma_map_benchmark maintainers (2025-09-28 14:41:34 -0600)

----------------------------------------------------------------
linux_kselftest-next-6.18-rc1

- Fixes watchdog test to exit when device doesn't support keep alive
- Fix missing header build complaints during out of tree build
- A few minor fixes to git ignore
- MAINTAINERS file change to update dma_map_benchmark

----------------------------------------------------------------
Akhilesh Patil (1):
       selftests: watchdog: skip ping loop if WDIOF_KEEPALIVEPING not supported

Dylan Yudaken (1):
       selftests/kexec: Ignore selftest binary

Qinxin Xia (1):
       MAINTAINERS: add myself and Barry to dma_map_benchmark maintainers

Thomas Weißschuh (1):
       selftests: always install UAPI headers to the correct directory

Yi Lai (1):
       selftests/kselftest_harness: Add harness-selftest.expected to TEST_FILES

  MAINTAINERS                                        | 5 +++--
  tools/testing/selftests/kexec/.gitignore           | 2 ++
  tools/testing/selftests/kselftest_harness/Makefile | 1 +
  tools/testing/selftests/lib.mk                     | 5 ++++-
  tools/testing/selftests/watchdog/watchdog-test.c   | 6 ++++++
  5 files changed, 16 insertions(+), 3 deletions(-)
  create mode 100644 tools/testing/selftests/kexec/.gitignore
----------------------------------------------------------------

[-- Attachment #2: linux_kselftest-next-6.18-rc1.diff --]
[-- Type: text/x-patch, Size: 2433 bytes --]

diff --git a/MAINTAINERS b/MAINTAINERS
index f6206963efbf..dedc681f2632 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7218,10 +7218,11 @@ F:	include/linux/dmaengine.h
 F:	include/linux/of_dma.h
 
 DMA MAPPING BENCHMARK
-M:	Xiang Chen <chenxiang66@hisilicon.com>
+M:	Barry Song <baohua@kernel.org>
+M:	Qinxin Xia <xiaqinxin@huawei.com>
 L:	iommu@lists.linux.dev
 F:	kernel/dma/map_benchmark.c
-F:	tools/testing/selftests/dma/
+F:	tools/dma/
 
 DMA MAPPING HELPERS
 M:	Marek Szyprowski <m.szyprowski@samsung.com>
diff --git a/tools/testing/selftests/kexec/.gitignore b/tools/testing/selftests/kexec/.gitignore
new file mode 100644
index 000000000000..5f3d9e089ae8
--- /dev/null
+++ b/tools/testing/selftests/kexec/.gitignore
@@ -0,0 +1,2 @@
+# SPDX-License-Identifier: GPL-2.0-only
+test_kexec_jump
diff --git a/tools/testing/selftests/kselftest_harness/Makefile b/tools/testing/selftests/kselftest_harness/Makefile
index 0617535a6ce4..d2369c01701a 100644
--- a/tools/testing/selftests/kselftest_harness/Makefile
+++ b/tools/testing/selftests/kselftest_harness/Makefile
@@ -2,6 +2,7 @@
 
 TEST_GEN_PROGS_EXTENDED := harness-selftest
 TEST_PROGS := harness-selftest.sh
+TEST_FILES := harness-selftest.expected
 EXTRA_CLEAN := harness-selftest.seen
 
 include ../lib.mk
diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
index 530390033929..a448fae57831 100644
--- a/tools/testing/selftests/lib.mk
+++ b/tools/testing/selftests/lib.mk
@@ -228,7 +228,10 @@ $(OUTPUT)/%:%.S
 	$(LINK.S) $^ $(LDLIBS) -o $@
 endif
 
+# Extract the expected header directory
+khdr_output := $(patsubst %/usr/include,%,$(filter %/usr/include,$(KHDR_INCLUDES)))
+
 headers:
-	$(Q)$(MAKE) -C $(top_srcdir) headers
+	$(Q)$(MAKE) -f $(top_srcdir)/Makefile -C $(khdr_output) headers
 
 .PHONY: run_tests all clean install emit_tests gen_mods_dir clean_mods_dir headers
diff --git a/tools/testing/selftests/watchdog/watchdog-test.c b/tools/testing/selftests/watchdog/watchdog-test.c
index a1f506ba5578..4f09c5db0c7f 100644
--- a/tools/testing/selftests/watchdog/watchdog-test.c
+++ b/tools/testing/selftests/watchdog/watchdog-test.c
@@ -332,6 +332,12 @@ int main(int argc, char *argv[])
 	if (oneshot)
 		goto end;
 
+	/* Check if WDIOF_KEEPALIVEPING is supported */
+	if (!(info.options & WDIOF_KEEPALIVEPING)) {
+		printf("WDIOC_KEEPALIVE not supported by this device\n");
+		goto end;
+	}
+
 	printf("Watchdog Ticking Away!\n");
 
 	/*

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

* Re: [GIT PULL] kselftest next update for Linux 6.18-rc1
  2025-09-29 23:07 [GIT PULL] kselftest next update for Linux 6.18-rc1 Shuah Khan
@ 2025-10-02  4:46 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2025-10-02  4:46 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Linus Torvalds, shuah, Shuah Khan, linux-kselftest, linux-kernel

The pull request you sent on Mon, 29 Sep 2025 17:07:02 -0600:

> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux_kselftest-next-6.18-rc1

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

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:[~2025-10-02  4:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-09-29 23:07 [GIT PULL] kselftest next update for Linux 6.18-rc1 Shuah Khan
2025-10-02  4:46 ` 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

Powered by JetHome