Hi Linus, Please pull the following kunit fixes update for Linux 7.0-rc3. kunit: - Fixes rust warnings when CONFIG_PRINTK is disabled. - Reduces stack usage in kunit_run_tests() to fix warnings when CONFIG_FRAME_WARN is set to a relatively low value. - Updates email address for David Gow. kunit tool: - Copies caller args in run_kernel to prevent mutation. Passed my repo sanity testing. x64_64 tests crash on mainline and my repo because of a known issue - fix is in next-20260302? Hope it gets into mainline soon. - https://lore.kernel.org/all/20260226-ungeziefer-erzfeind-13425179c7b2@brauner/ diff is attached. thanks, -- Shuah ---------------------------------------------------------------- The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f: Linux 7.0-rc1 (2026-02-22 13:18:59 -0800) 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.0-rc3 for you to fetch changes up to b11b9b6751b2cd74960dccd91667c5117fce743c: kunit: reduce stack usage in kunit_run_tests() (2026-03-02 10:11:06 -0700) ---------------------------------------------------------------- linux_kselftest-kunit-fixes-7.0-rc3 kunit: - Fixes rust warnings when CONFIG_PRINTK is disabled. - Reduces stack usage in kunit_run_tests() to fix warnings when CONFIG_FRAME_WARN is set to a relatively low value. - Updates email address for David Gow. kunit tool: - Copies caller args in run_kernel to prevent mutation. ---------------------------------------------------------------- Alexandre Courbot (1): rust: kunit: fix warning when !CONFIG_PRINTK Arnd Bergmann (1): kunit: reduce stack usage in kunit_run_tests() David Gow (1): MAINTAINERS: Update email address for David Gow Shuvam Pandey (1): kunit: tool: copy caller args in run_kernel to prevent mutation .mailmap | 1 + MAINTAINERS | 4 +- lib/kunit/test.c | 231 ++++++++++++++++++--------------- rust/kernel/kunit.rs | 8 ++ tools/testing/kunit/kunit_kernel.py | 6 +- tools/testing/kunit/kunit_tool_test.py | 26 ++++ 6 files changed, 166 insertions(+), 110 deletions(-) ----------------------------------------------------------------