From: Sean Christopherson <seanjc@google.com>
To: Paolo Bonzini <pbonzini@redhat.com>,
Thomas Gleixner <tglx@linutronix.de>,
Mingwei Zhang <mizhang@google.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
linux-kselftest@vger.kernel.org,
Jim Mattson <jmattson@google.com>,
Venkatesh Srinivas <venkateshs@google.com>,
Aaron Lewis <aaronlewis@google.com>,
"Chang S. Bae" <chang.seok.bae@intel.com>,
Chao Gao <chao.gao@intel.com>
Subject: Re: [PATCH v3 00/13] Overhauling amx_test
Date: Fri, 24 Mar 2023 14:30:42 -0700 [thread overview]
Message-ID: <ZB4WglXwnOe7HFb1@google.com> (raw)
In-Reply-To: <ZB4PqcsZlE8cOo0C@google.com>
On Fri, Mar 24, 2023, Sean Christopherson wrote:
> On Fri, Mar 24, 2023, Sean Christopherson wrote:
> > On Tue, 21 Feb 2023 16:36:42 +0000, Mingwei Zhang wrote:
> > > In this version, I have integrated Aaron's changes to the amx_test. In
> > > addition, we also integrated one fix patch for a kernel warning due to
> > > xsave address issue.
> > >
> > > Patch 1:
> > > Fix a host FPU kernel warning due to missing XTILEDATA in xinit.
> > >
> > > [...]
> >
> > Applied everything except patch 7 to kvm-x86 selftests. Please holler if I
> > missed something subtle about patch 7 (using & vs. ==). This is at the head
> > of kvm-x86/selftests, i.e. I can fix it up if necessary.
> >
> > [01/13] x86/fpu/xstate: Avoid getting xstate address of init_fpstate if fpstate contains the component
> > (no commit info)
>
> *sigh* And by "everything" I meant "all of the selftests patches".
Continuing my circus of goofs, I already force pushed selftests due to an unrelated
mixup. New hashes below (the comment above still stands in case another overwrite
is necessary).
[1/11] KVM: selftests: Add a fully functional "struct xstate" for x86
https://github.com/kvm-x86/linux/commit/5de4a3765b7e
[2/11] KVM: selftests: Fix an error in comment of amx_test
https://github.com/kvm-x86/linux/commit/bec357a4af55
[3/11] KVM: selftests: Enable checking on xcomp_bv in amx_test
https://github.com/kvm-x86/linux/commit/48ad4222c43c
[4/11] KVM: selftests: Add check of CR0.TS in the #NM handler in amx_test
https://github.com/kvm-x86/linux/commit/0aeb9729486a
[5/11] KVM: selftests: Assert that XTILE_DATA is set in IA32_XFD on #NM
https://github.com/kvm-x86/linux/commit/9cbd9aaa670f
[6/11] KVM: selftests: Verify XTILE_DATA in XSTATE isn't affected by IA32_XFD
https://github.com/kvm-x86/linux/commit/bfc5afc37c9d
[7/11] KVM: selftests: Assert that XTILE is XSAVE-enabled
https://github.com/kvm-x86/linux/commit/7e1075f05078
[8/11] KVM: selftests: Assert that both XTILE{CFG,DATA} are XSAVE-enabled
https://github.com/kvm-x86/linux/commit/2ab3991b0b9b
[9/11] KVM: selftests: Move XSAVE and OSXSAVE CPUID checks into AMX's init_regs()
https://github.com/kvm-x86/linux/commit/d01d4a4f7bd2
[10/11] KVM: selftests: Check that the palette table exists before using it
https://github.com/kvm-x86/linux/commit/d32fb0714293
[11/11] KVM: selftests: Check that XTILEDATA supports XFD
https://github.com/kvm-x86/linux/commit/d563164eaeb1
prev parent reply other threads:[~2023-03-24 21:30 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-21 16:36 [PATCH v3 00/13] Overhauling amx_test Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 01/13] x86/fpu/xstate: Avoid getting xstate address of init_fpstate if fpstate contains the component Mingwei Zhang
2023-02-21 20:54 ` Thomas Gleixner
2023-02-22 3:05 ` Chang S. Bae
2023-02-22 8:38 ` Thomas Gleixner
2023-02-22 18:40 ` Mingwei Zhang
2023-02-22 22:13 ` Chang S. Bae
2023-02-24 23:56 ` Mingwei Zhang
2023-02-25 0:47 ` Chang S. Bae
2023-02-25 1:09 ` Mingwei Zhang
2023-02-25 1:39 ` Chang S. Bae
2023-02-21 16:36 ` [PATCH v3 02/13] KVM: selftests: x86: Add a working xstate data structure Mingwei Zhang
2023-03-24 20:36 ` Sean Christopherson
2023-02-21 16:36 ` [PATCH v3 03/13] KVM: selftests: x86: Fix an error in comment of amx_test Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 04/13] KVM: selftests: x86: Enable checking on xcomp_bv in amx_test Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 05/13] KVM: selftests: x86: Add check of CR0.TS in the #NM handler " Mingwei Zhang
2023-03-24 20:38 ` Sean Christopherson
2023-02-21 16:36 ` [PATCH v3 06/13] KVM: selftests: x86: Add the XFD check to IA32_XFD in #NM handler Mingwei Zhang
2023-03-24 20:39 ` Sean Christopherson
2023-02-21 16:36 ` [PATCH v3 07/13] KVM: selftests: x86: Fix the checks to XFD_ERR using and operation Mingwei Zhang
2023-03-24 20:41 ` Sean Christopherson
2023-02-21 16:36 ` [PATCH v3 08/13] KVM: selftests: x86: Repeat the checking of xheader when IA32_XFD[XTILEDATA] is set in amx_test Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 09/13] KVM: selftests: x86: Assert that XTILE is XSAVE-enabled Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 10/13] KVM: selftests: x86: Assert that both XTILE{CFG,DATA} are XSAVE-enabled Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 11/13] KVM: selftests: x86: Remove redundant check that XSAVE is supported Mingwei Zhang
2023-03-24 20:43 ` Sean Christopherson
2023-02-21 16:36 ` [PATCH v3 12/13] KVM: selftests: x86: Check that the palette table exists before using it Mingwei Zhang
2023-02-21 16:36 ` [PATCH v3 13/13] KVM: selftests: x86: Check that XTILEDATA supports XFD Mingwei Zhang
2023-03-24 20:58 ` [PATCH v3 00/13] Overhauling amx_test Sean Christopherson
2023-03-24 21:01 ` Sean Christopherson
2023-03-24 21:30 ` Sean Christopherson [this message]
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=ZB4WglXwnOe7HFb1@google.com \
--to=seanjc@google.com \
--cc=aaronlewis@google.com \
--cc=chang.seok.bae@intel.com \
--cc=chao.gao@intel.com \
--cc=hpa@zytor.com \
--cc=jmattson@google.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=mizhang@google.com \
--cc=pbonzini@redhat.com \
--cc=tglx@linutronix.de \
--cc=venkateshs@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox