Commit 6336a810 authored by Emanuele Giuseppe Esposito's avatar Emanuele Giuseppe Esposito Committed by Paolo Bonzini

KVM: selftests: replace assertion with warning in access_tracking_perf_test

Page_idle uses {ptep/pmdp}_clear_young_notify which in turn calls
the mmu notifier callback ->clear_young(), which purposefully
does not flush the TLB.

When running the test in a nested guest, point 1. of the test
doc header is violated, because KVM TLB is unbounded by size
and since no flush is forced, KVM does not update the sptes
accessed/idle bits resulting in guest assertion failure.

More precisely, only the first ACCESS_WRITE in run_test() actually
makes visible changes, because sptes are created and the accessed
bit is set to 1 (or idle bit is 0). Then the first mark_memory_idle()
passes since access bit is still one, and sets all pages as idle
(or not accessed). When the next write is performed, the update
is not flushed therefore idle is still 1 and next mark_memory_idle()
fails.
Signed-off-by: default avatarEmanuele Giuseppe Esposito <eesposit@redhat.com>
Message-Id: <20220926082923.299554-1-eesposit@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 0f816e02
...@@ -31,8 +31,9 @@ ...@@ -31,8 +31,9 @@
* These limitations are worked around in this test by using a large enough * These limitations are worked around in this test by using a large enough
* region of memory for each vCPU such that the number of translations cached in * region of memory for each vCPU such that the number of translations cached in
* the TLB and the number of pages held in pagevecs are a small fraction of the * the TLB and the number of pages held in pagevecs are a small fraction of the
* overall workload. And if either of those conditions are not true this test * overall workload. And if either of those conditions are not true (for example
* will fail rather than silently passing. * in nesting, where TLB size is unlimited) this test will print a warning
* rather than silently passing.
*/ */
#include <inttypes.h> #include <inttypes.h>
#include <limits.h> #include <limits.h>
...@@ -172,17 +173,23 @@ static void mark_vcpu_memory_idle(struct kvm_vm *vm, ...@@ -172,17 +173,23 @@ static void mark_vcpu_memory_idle(struct kvm_vm *vm,
vcpu_idx, no_pfn, pages); vcpu_idx, no_pfn, pages);
/* /*
* Test that at least 90% of memory has been marked idle (the rest might * Check that at least 90% of memory has been marked idle (the rest
* not be marked idle because the pages have not yet made it to an LRU * might not be marked idle because the pages have not yet made it to an
* list or the translations are still cached in the TLB). 90% is * LRU list or the translations are still cached in the TLB). 90% is
* arbitrary; high enough that we ensure most memory access went through * arbitrary; high enough that we ensure most memory access went through
* access tracking but low enough as to not make the test too brittle * access tracking but low enough as to not make the test too brittle
* over time and across architectures. * over time and across architectures.
*
* Note that when run in nested virtualization, this check will trigger
* much more frequently because TLB size is unlimited and since no flush
* happens, much more pages are cached there and guest won't see the
* "idle" bit cleared.
*/ */
TEST_ASSERT(still_idle < pages / 10, if (still_idle < pages / 10)
"vCPU%d: Too many pages still idle (%"PRIu64 " out of %" printf("WARNING: vCPU%d: Too many pages still idle (%" PRIu64
PRIu64 ").\n", "out of %" PRIu64 "), this will affect performance results"
vcpu_idx, still_idle, pages); ".\n",
vcpu_idx, still_idle, pages);
close(page_idle_fd); close(page_idle_fd);
close(pagemap_fd); close(pagemap_fd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment