On 2/9/21 12:02 PM, Catalin Marinas wrote: > On Mon, Feb 08, 2021 at 04:56:17PM +0000, Vincenzo Frascino wrote: >> From: Andrey Konovalov <andreyk...@google.com> >> >> Asynchronous KASAN mode doesn't guarantee that a tag fault will be >> detected immediately and causes tests to fail. Forbid running them >> in asynchronous mode. >> >> Signed-off-by: Andrey Konovalov <andreyk...@google.com> > > That's missing your SoB. > Yes, I will add it in the next iteration. >> diff --git a/lib/test_kasan.c b/lib/test_kasan.c >> index 7285dcf9fcc1..f82d9630cae1 100644 >> --- a/lib/test_kasan.c >> +++ b/lib/test_kasan.c >> @@ -51,6 +51,10 @@ static int kasan_test_init(struct kunit *test) >> kunit_err(test, "can't run KASAN tests with KASAN disabled"); >> return -1; >> } >> + if (kasan_flag_async) { >> + kunit_err(test, "can't run KASAN tests in async mode"); >> + return -1; >> + } >> >> multishot = kasan_save_enable_multi_shot(); >> hw_set_tagging_report_once(false); > > I think we can still run the kasan tests in async mode if we check the > TFSR_EL1 at the end of each test by calling mte_check_tfsr_exit(). > IIUC this was the plan for the future. But I let Andrey comment for more details. -- Regards, Vincenzo
- [PATCH v12 4/7] arm64: mte: Enable TCO in functions that... Vincenzo Frascino
- Re: [PATCH v12 4/7] arm64: mte: Enable TCO in funct... Catalin Marinas
- Re: [PATCH v12 4/7] arm64: mte: Enable TCO in f... Vincenzo Frascino
- [PATCH v12 3/7] kasan: Add report for async mode Vincenzo Frascino
- Re: [PATCH v12 3/7] kasan: Add report for async mod... kernel test robot
- Re: [PATCH v12 3/7] kasan: Add report for async... Vincenzo Frascino
- [PATCH v12 7/7] kasan: don't run tests in async mode Vincenzo Frascino
- Re: [PATCH v12 7/7] kasan: don't run tests in async... kernel test robot
- Re: [PATCH v12 7/7] kasan: don't run tests in a... Vincenzo Frascino
- Re: [PATCH v12 7/7] kasan: don't run tests in async... Catalin Marinas
- Re: [PATCH v12 7/7] kasan: don't run tests in a... Vincenzo Frascino
- Re: [PATCH v12 7/7] kasan: don't run tests ... Andrey Konovalov
- Re: [PATCH v12 7/7] kasan: don't run te... Catalin Marinas
- Re: [PATCH v12 7/7] kasan: don't r... Andrey Konovalov
- Re: [PATCH v12 7/7] kasan: don... Vincenzo Frascino
- [PATCH v12 2/7] kasan: Add KASAN mode kernel parameter Vincenzo Frascino
- [PATCH v12 1/7] arm64: mte: Add asynchronous mode suppor... Vincenzo Frascino
- [PATCH v12 6/7] arm64: mte: Save/Restore TFSR_EL1 during... Vincenzo Frascino
- Re: [PATCH v12 6/7] arm64: mte: Save/Restore TFSR_E... Lorenzo Pieralisi
- Re: [PATCH v12 6/7] arm64: mte: Save/Restore TF... Vincenzo Frascino
- Re: [PATCH v12 6/7] arm64: mte: Save/Restore TFSR_E... Catalin Marinas