public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] x86/fpu: Fix guest FPU state buffer allocation size
@ 2025-02-18 14:10 Stanislav Spassov
  2025-02-21 13:56 ` [tip: x86/fpu] " tip-bot2 for Stanislav Spassov
  0 siblings, 1 reply; 2+ messages in thread
From: Stanislav Spassov @ 2025-02-18 14:10 UTC (permalink / raw)
  To: Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen,
	linux-kernel
  Cc: x86, David Woodhouse, James Gowans, Stanislav Spassov

Ongoing work on an optimization to batch-preallocate vCPU state buffers
for KVM revealed a mismatch between the allocation sizes used in
fpu_alloc_guest_fpstate() and fpstate_realloc(). While the former
allocates a buffer sized to fit the default set of XSAVE features
in UABI form (as per fpu_user_cfg), the latter uses its ksize argument
derived (for the requested set of features) in the same way as the sizes
found in fpu_kernel_cfg, i.e. using the compacted in-kernel
representation.

The correct size to use for guest FPU state should indeed be the
kernel one as seen in fpstate_realloc(). The original issue likely
went unnoticed through a combination of UABI size typically being
larger than or equal to kernel size, and/or both amounting to the
same number of allocated 4K pages.

Fixes: 69f6ed1d14c6 ("x86/fpu: Provide infrastructure for KVM FPU cleanup")
Signed-off-by: Stanislav Spassov <stanspas@amazon.de>
---
 arch/x86/kernel/fpu/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c
index 1209c7aebb21..36df548acc40 100644
--- a/arch/x86/kernel/fpu/core.c
+++ b/arch/x86/kernel/fpu/core.c
@@ -220,7 +220,7 @@ bool fpu_alloc_guest_fpstate(struct fpu_guest *gfpu)
 	struct fpstate *fpstate;
 	unsigned int size;
 
-	size = fpu_user_cfg.default_size + ALIGN(offsetof(struct fpstate, regs), 64);
+	size = fpu_kernel_cfg.default_size + ALIGN(offsetof(struct fpstate, regs), 64);
 	fpstate = vzalloc(size);
 	if (!fpstate)
 		return false;
-- 
2.47.1


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

* [tip: x86/fpu] x86/fpu: Fix guest FPU state buffer allocation size
  2025-02-18 14:10 [PATCH v1] x86/fpu: Fix guest FPU state buffer allocation size Stanislav Spassov
@ 2025-02-21 13:56 ` tip-bot2 for Stanislav Spassov
  0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Stanislav Spassov @ 2025-02-21 13:56 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Stanislav Spassov, Ingo Molnar, x86, linux-kernel

The following commit has been merged into the x86/fpu branch of tip:

Commit-ID:     1937e18cc3cf27e2b3ef70e8c161437051ab7608
Gitweb:        https://git.kernel.org/tip/1937e18cc3cf27e2b3ef70e8c161437051ab7608
Author:        Stanislav Spassov <stanspas@amazon.de>
AuthorDate:    Tue, 18 Feb 2025 14:10:45 
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Fri, 21 Feb 2025 14:47:26 +01:00

x86/fpu: Fix guest FPU state buffer allocation size

Ongoing work on an optimization to batch-preallocate vCPU state buffers
for KVM revealed a mismatch between the allocation sizes used in
fpu_alloc_guest_fpstate() and fpstate_realloc(). While the former
allocates a buffer sized to fit the default set of XSAVE features
in UABI form (as per fpu_user_cfg), the latter uses its ksize argument
derived (for the requested set of features) in the same way as the sizes
found in fpu_kernel_cfg, i.e. using the compacted in-kernel
representation.

The correct size to use for guest FPU state should indeed be the
kernel one as seen in fpstate_realloc(). The original issue likely
went unnoticed through a combination of UABI size typically being
larger than or equal to kernel size, and/or both amounting to the
same number of allocated 4K pages.

Fixes: 69f6ed1d14c6 ("x86/fpu: Provide infrastructure for KVM FPU cleanup")
Signed-off-by: Stanislav Spassov <stanspas@amazon.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20250218141045.85201-1-stanspas@amazon.de
---
 arch/x86/kernel/fpu/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c
index 1209c7a..36df548 100644
--- a/arch/x86/kernel/fpu/core.c
+++ b/arch/x86/kernel/fpu/core.c
@@ -220,7 +220,7 @@ bool fpu_alloc_guest_fpstate(struct fpu_guest *gfpu)
 	struct fpstate *fpstate;
 	unsigned int size;
 
-	size = fpu_user_cfg.default_size + ALIGN(offsetof(struct fpstate, regs), 64);
+	size = fpu_kernel_cfg.default_size + ALIGN(offsetof(struct fpstate, regs), 64);
 	fpstate = vzalloc(size);
 	if (!fpstate)
 		return false;

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

end of thread, other threads:[~2025-02-21 13:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-18 14:10 [PATCH v1] x86/fpu: Fix guest FPU state buffer allocation size Stanislav Spassov
2025-02-21 13:56 ` [tip: x86/fpu] " tip-bot2 for Stanislav Spassov

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