public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] x86/pkeys: Remove unnecessary XGETBV1 dependency in signal frame exposition
@ 2025-02-14  1:06 Chang S. Bae
  2025-02-14  1:06 ` [PATCH 1/2] x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE Chang S. Bae
  2025-02-14  1:06 ` [PATCH 2/2] x86/pkeys: Simplify PKRU update in signal frame Chang S. Bae
  0 siblings, 2 replies; 3+ messages in thread
From: Chang S. Bae @ 2025-02-14  1:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: x86, tglx, mingo, bp, dave.hansen, aruna.ramakrishna,
	TonyWWang-oc, chang.seok.bae

Hi all,

This series removes an unnecessary dependency on XGETBV1 which was
brought by commit

    ae6012d72fa6 ("x86/pkeys: Ensure updated PKRU value is XRSTOR'd").

Currently, the PKRU exposure logic overwrites xregs_state->header
->xfeatures in the signal frame, seemingly to emulate XSAVE behavior:
combining the requested feature bitmap with a processor-tracked status
bitmap derived from XGETBV(1).

A previous posting [1] attempted to handle the case where XGETBV(1) is
disabled or unexposed. However, that approach assumed this dependency was
necessary and further modified the logic to skip PKRU writes in such
cases, which appears problematic.

Instead, the XSAVE-written value can be read directly from userspace
memory, as is already done for legacy states [2]. Thus, tying PKRU
exposure in the ABI to XGETBV1 is excessive. This series refactors
reusable code into a helper and applies it to PKRU handling, fully
eliminating the XGETBV1 dependency.

Thanks,
Chang

[1]: https://lore.kernel.org/lkml/20250102075419.2559-1-TonyWWang-oc@zhaoxin.com/
[2]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/x86/kernel/fpu/signal.c#n139

Chang S. Bae (2):
  x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE
  x86/pkeys: Simplify PKRU update in signal frame

 arch/x86/kernel/fpu/signal.c | 11 +----------
 arch/x86/kernel/fpu/xstate.h | 21 +++++++++++++++------
 2 files changed, 16 insertions(+), 16 deletions(-)


base-commit: b36de8b904b8ff2095ece7af6b3cfff8c73c2fb1
-- 
2.45.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-14  1:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-14  1:06 [PATCH 0/2] x86/pkeys: Remove unnecessary XGETBV1 dependency in signal frame exposition Chang S. Bae
2025-02-14  1:06 ` [PATCH 1/2] x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE Chang S. Bae
2025-02-14  1:06 ` [PATCH 2/2] x86/pkeys: Simplify PKRU update in signal frame Chang S. Bae

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox