From: Sean Christopherson <seanjc@google.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: David Matlack <dmatlack@google.com>,
Ben Gardon <bgardon@google.com>,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
Peter Xu <peterx@redhat.com>, Vipin Sharma <vipinsh@google.com>,
Ricardo Koller <ricarkol@google.com>
Subject: Re: [PATCH V5 0/2] selftests: KVM: Add a test for eager page splitting
Date: Wed, 15 Mar 2023 12:22:20 -0700 [thread overview]
Message-ID: <ZBIa7NQI4qRP6uON@google.com> (raw)
In-Reply-To: <199f404d-c08e-3895-6ce3-36b21514f487@redhat.com>
On Wed, Mar 15, 2023, Paolo Bonzini wrote:
> On 3/15/23 13:24, Paolo Bonzini wrote:
> > On Tue, Mar 14, 2023 at 5:00 PM David Matlack <dmatlack@google.com> wrote:
> > > I wonder if pages are getting swapped, especially if running on a
> > > workstation. If so, mlock()ing all guest memory VMAs might be
> > > necessary to be able to assert exact page counts.
> >
> > I don't think so, it's 100% reproducible and the machine is idle and
> > only accessed via network. Also has 64 GB of RAM. :)
>
> It also reproduces on Intel with pml=0 and eptad=0; the reason is due
> to the different semantics of dirty bits for page-table pages on AMD
> and Intel. Both AMD and eptad=0 Intel treat those as writes, therefore
> more pages are dropped before the repopulation phase when dirty logging
> is disabled.
>
> The "missing" page had been included in the population phase because it
> hosts the page tables for vcpu_args, but repopulation does not need it.
>
> This fixes it:
>
> -------------------- 8< ---------------
> From: Paolo Bonzini <pbonzini@redhat.com>
> Subject: [PATCH] selftests: KVM: perform the same memory accesses on every memstress iteration
>
> Perform the same memory accesses including the initialization steps
> that read from args and vcpu_args. This ensures that the state of
> KVM's page tables is the same after every iteration, including the
> pages that host the guest page tables for args and vcpu_args.
>
> This fixes a failure of dirty_log_page_splitting_test on AMD machines,
> as well as on Intel if PML and EPT A/D bits are both disabled.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>
> diff --git a/tools/testing/selftests/kvm/lib/memstress.c b/tools/testing/selftests/kvm/lib/memstress.c
> index 3632956c6bcf..8a429f4c86db 100644
> --- a/tools/testing/selftests/kvm/lib/memstress.c
> +++ b/tools/testing/selftests/kvm/lib/memstress.c
> @@ -56,15 +56,15 @@ void memstress_guest_code(uint32_t vcpu_idx)
> uint64_t page;
> int i;
> - rand_state = new_guest_random_state(args->random_seed + vcpu_idx);
> + while (true) {
> + rand_state = new_guest_random_state(args->random_seed + vcpu_idx);
Doesn't this partially defeat the randomization that some tests like want? E.g.
a test that wants to heavily randomize state will get the same pRNG for every
iteration. Seems like we should have a knob to control whether or not each
iteration needs to be identical.
next prev parent reply other threads:[~2023-03-15 19:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-31 18:18 [PATCH V5 0/2] selftests: KVM: Add a test for eager page splitting Ben Gardon
2023-01-31 18:18 ` [PATCH V5 1/2] selftests: KVM: Move dirty logging functions to memstress.(c|h) Ben Gardon
2023-01-31 18:18 ` [PATCH V5 2/2] selftests: KVM: Add dirty logging page splitting test Ben Gardon
2023-03-14 13:27 ` [PATCH V5 0/2] selftests: KVM: Add a test for eager page splitting Paolo Bonzini
2023-03-14 14:23 ` Paolo Bonzini
2023-03-14 16:00 ` David Matlack
2023-03-15 12:24 ` Paolo Bonzini
2023-03-15 19:08 ` Paolo Bonzini
2023-03-15 19:22 ` Sean Christopherson [this message]
2023-03-15 20:49 ` Paolo Bonzini
2023-06-02 1:23 ` Sean Christopherson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZBIa7NQI4qRP6uON@google.com \
--to=seanjc@google.com \
--cc=bgardon@google.com \
--cc=dmatlack@google.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=ricarkol@google.com \
--cc=vipinsh@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.