From: Eric Biggers <ebiggers@kernel.org>
To: Borislav Petkov <bp@alien8.de>
Cc: x86@kernel.org, linux-um@lists.infradead.org,
linux-raid@vger.kernel.org, linux-crypto@vger.kernel.org,
linux-kernel@vger.kernel.org, Christoph Hellwig <hch@lst.de>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v2 1/8] x86/fpu: Check for missing AVX and AVX-512 xstate bits
Date: Tue, 28 Jul 2026 18:34:47 +0000 [thread overview]
Message-ID: <20260728183447.GB3355536@google.com> (raw)
In-Reply-To: <20260728182007.GBamjy17zynlWm2gQT@fat_crate.local>
On Tue, Jul 28, 2026 at 11:20:07AM -0700, Borislav Petkov wrote:
> On Mon, Jul 27, 2026 at 10:45:32PM -0700, Eric Biggers wrote:
> > *xfeatures* 0, not *xfeature* 0. It's a bitmask.
>
> That doesn't make it more clear. It does "clear cpu caps with missing
> xfeatures 0". I can't parse that code, maybe I don't see it yet.
The argument is the bitmask of xfeatures that are present. 0 is an
empty bitmask, i.e. no xfeatures are present.
I can rename it to xfeatures_present and/or document the argument
explicitly in the function comment, if that would help.
> > Hypervisors that set AVX CPUID bits without their prerequisite
> > xfeatures.
>
> Yeah, those are the ones I don't care about.
>
> > Or the host OS, in the case of the UML patch.
>
> That was because UML didn't have cpu_has_xfeatures(), right?
I'm not sure what this question is asking, but UML indeed doesn't
implement cpu_has_xfeatures(). Currently most of the AVX optimized code
isn't enabled on UML, which avoids this limitation. The RAID code is
different though, as it's enabled on UML.
> > There are about 25 sites where kernel code is checking for this. This
> > is just checking it at the architectural level instead.
>
> So tglx mentioned another case - firmware. Apparently we can have firmware
> which fumbles the configuration of those bits and I can very much see that
> happening - it is firmware, doh, ofc.
>
> > We could try taking the position that this is not supported at all and
> > just delete all the cpu_has_xfeatures() checks without replacing them
> > with anything, and see what bug reports we receive (other than all the
> > AI ones which we'd need to just ignore). This would mean just taking
> > patches 3-8. Is that what you'd prefer?
>
> I had another idea this morning: towards the end of fpu__init_system_xstate(),
> we have figured out everything we support, components, buffer sizes, etc.
> There we also do a paranoia check on the xfeatures mask.
>
> How about we go through the final xfeatures mask and then clear bits which are
> wrong?
>
> This way we'll have all the checking done in one place, if checks pass we can
> say the machine is ok to do xstate handling and then we can drop all other
> checks around the tree.
>
> How does that sound?
First, the code being added *is* to fpu__init_system_xstate(). Do you
think it needs to be moved later in the function, and if so why?
Second, clearing xfeatures is the opposite of what's needed.
(It's also already there. See loop with the comment
"Clear XSAVE features that are disabled in the normal CPUID".)
What's needed is clearing X86_FEATURE_* flags based on missing
xfeatures.
- Eric
next prev parent reply other threads:[~2026-07-28 18:34 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-28 2:15 [PATCH v2 0/8] x86: Remove cpu_has_xfeatures() and add AVX-512 xor_gen() Eric Biggers
2026-07-28 2:15 ` [PATCH v2 1/8] x86/fpu: Check for missing AVX and AVX-512 xstate bits Eric Biggers
2026-07-28 5:27 ` Borislav Petkov
2026-07-28 5:45 ` Eric Biggers
2026-07-28 18:20 ` Borislav Petkov
2026-07-28 18:34 ` Eric Biggers [this message]
2026-07-28 22:59 ` Borislav Petkov
2026-07-28 23:34 ` Eric Biggers
2026-07-28 23:47 ` Borislav Petkov
2026-07-28 9:23 ` David Laight
2026-07-28 22:35 ` Thomas Gleixner
2026-07-28 2:15 ` [PATCH v2 2/8] um: " Eric Biggers
2026-07-28 2:15 ` [PATCH v2 3/8] crypto: x86 - Stop using cpu_has_xfeatures() Eric Biggers
2026-07-28 9:30 ` David Laight
2026-07-28 23:40 ` Eric Biggers
2026-07-28 2:15 ` [PATCH v2 4/8] lib/crypto: x86: " Eric Biggers
2026-07-28 2:16 ` [PATCH v2 5/8] lib/crc: " Eric Biggers
2026-07-28 2:16 ` [PATCH v2 6/8] x86/fpu: Remove cpu_has_xfeatures() Eric Biggers
2026-07-28 2:16 ` [PATCH v2 7/8] lib/raid/xor: x86: Remove redundant X86_FEATURE_OSXSAVE check Eric Biggers
2026-07-28 3:41 ` Christoph Hellwig
2026-07-28 2:16 ` [PATCH v2 8/8] lib/raid/xor: x86: Add AVX-512 optimized xor_gen() Eric Biggers
2026-07-28 3:44 ` Christoph Hellwig
2026-07-28 3:44 ` [PATCH v2 0/8] x86: Remove cpu_has_xfeatures() and add AVX-512 xor_gen() Christoph Hellwig
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=20260728183447.GB3355536@google.com \
--to=ebiggers@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=hch@lst.de \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=linux-um@lists.infradead.org \
--cc=x86@kernel.org \
/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