git: 1d6ebddb62bc - stable/13 - amd64: correct size of the SSE area in the xsave layout

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Wed, 15 Dec 2021 01:55:12 UTC
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=1d6ebddb62bc18833b21a15f8e7eb86102140100

commit 1d6ebddb62bc18833b21a15f8e7eb86102140100
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-12-12 02:49:50 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-12-15 01:41:28 +0000

    amd64: correct size of the SSE area in the xsave layout
    
    (cherry picked from commit 73b357be92385cbb70ba19e7023a736af2c6b493)
---
 sys/amd64/amd64/fpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c
index 24986958d4ca..daf079b7d2cc 100644
--- a/sys/amd64/amd64/fpu.c
+++ b/sys/amd64/amd64/fpu.c
@@ -484,7 +484,7 @@ fpuinitstate(void *arg __unused)
 		xsave_area_desc[0].size = 160;
 		/* XMM */
 		xsave_area_desc[1].offset = 160;
-		xsave_area_desc[1].size = 288 - 160;
+		xsave_area_desc[1].size = 416 - 160;
 
 		for (i = 2; i < max_ext_n; i++) {
 			cpuid_count(0xd, i, cp);