Skip to content

Commit 0ddfb1c

Browse files
tlendackysuryasaimadhu
authored andcommitted
x86/sev-es: Use GHCB accessor for setting the MMIO scratch buffer
Use ghcb_set_sw_scratch() to set the GHCB scratch field, which will also set the corresponding bit in the GHCB valid_bitmap field to denote that sw_scratch is actually valid. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Joerg Roedel <jroedel@suse.de> Link: https://lkml.kernel.org/r/ba84deabdf44a7a880454fb351d189c6ad79d4ba.1601041106.git.thomas.lendacky@amd.com
1 parent f5ed777 commit 0ddfb1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/x86/kernel/sev-es.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ static enum es_result vc_do_mmio(struct ghcb *ghcb, struct es_em_ctxt *ctxt,
751751
/* Can never be greater than 8 */
752752
exit_info_2 = bytes;
753753

754-
ghcb->save.sw_scratch = ghcb_pa + offsetof(struct ghcb, shared_buffer);
754+
ghcb_set_sw_scratch(ghcb, ghcb_pa + offsetof(struct ghcb, shared_buffer));
755755

756756
return sev_es_ghcb_hv_call(ghcb, ctxt, exit_code, exit_info_1, exit_info_2);
757757
}

0 commit comments

Comments
 (0)