diff options
| author | Pavan Kumar Paluri <papaluri@amd.com> | 2024-07-29 13:08:08 -0500 |
|---|---|---|
| committer | Borislav Petkov (AMD) <bp@alien8.de> | 2024-07-30 10:07:26 +0200 |
| commit | c14e4114582c20276467226387d5bae7310a849e (patch) | |
| tree | 1ec4b40d3a09680e3c908930a088b506156ee5ac /arch/x86 | |
| parent | 0f7ced7d620ecc7a986843d6aeec41cce3116f41 (diff) | |
| download | linux-c14e4114582c20276467226387d5bae7310a849e.tar.gz linux-c14e4114582c20276467226387d5bae7310a849e.tar.bz2 linux-c14e4114582c20276467226387d5bae7310a849e.zip | |
x86/sev: Fix __reserved field in sev_config
sev_config currently has debug, ghcbs_initialized, and use_cas fields.
However, __reserved count has not been updated. Fix this.
Fixes: 34ff65901735 ("x86/sev: Use kernel provided SVSM Calling Areas")
Signed-off-by: Pavan Kumar Paluri <papaluri@amd.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/20240729180808.366587-1-papaluri@amd.com
Diffstat (limited to 'arch/x86')
| -rw-r--r-- | arch/x86/coco/sev/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/coco/sev/core.c b/arch/x86/coco/sev/core.c index 082d61d85dfc..de1df0cb45da 100644 --- a/arch/x86/coco/sev/core.c +++ b/arch/x86/coco/sev/core.c @@ -163,7 +163,7 @@ struct sev_config { */ use_cas : 1, - __reserved : 62; + __reserved : 61; }; static struct sev_config sev_cfg __read_mostly; |
