diff options
author | Tom Lendacky <thomas.lendacky@amd.com> | 2022-04-20 09:14:13 -0500 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2022-04-21 11:48:24 +0200 |
commit | 2bf93ffbb97e0614cfc431d2ea33b7eae7481eb2 (patch) | |
tree | 795262f066a0700d17988258d9bb17332ffeccea /arch/x86/include/asm | |
parent | 6044d159b5d826259a7397d42fa3ad0bfc4dbd13 (diff) | |
download | linux-2bf93ffbb97e0614cfc431d2ea33b7eae7481eb2.tar.bz2 |
virt: sevguest: Change driver name to reflect generic SEV support
During patch review, it was decided the SNP guest driver name should not
be SEV-SNP specific, but should be generic for use with anything SEV.
However, this feedback was missed and the driver name, and many of the
driver functions and structures, are SEV-SNP name specific. Rename the
driver to "sev-guest" (to match the misc device that is created) and
update some of the function and structure names, too.
While in the file, adjust the one pr_err() message to be a dev_err()
message so that the message, if issued, uses the driver name.
Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/307710bb5515c9088a19fd0b930268c7300479b2.1650464054.git.thomas.lendacky@amd.com
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r-- | arch/x86/include/asm/sev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/sev.h b/arch/x86/include/asm/sev.h index 9c2d33f1cfee..6e3dda4f82b5 100644 --- a/arch/x86/include/asm/sev.h +++ b/arch/x86/include/asm/sev.h @@ -95,7 +95,7 @@ struct snp_req_data { unsigned int data_npages; }; -struct snp_guest_platform_data { +struct sev_guest_platform_data { u64 secrets_gpa; }; |