All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] x86/sev: Remove unused variable "err" in enforce_vmpl0()
@ 2022-09-23 11:32 Li Zetao
  2022-09-23 12:19 ` Borislav Petkov
  0 siblings, 1 reply; 6+ messages in thread
From: Li Zetao @ 2022-09-23 11:32 UTC (permalink / raw)
  To: tglx, mingo, bp, dave.hansen, x86, hpa, brijesh.singh,
	michael.roth, venu.busireddy
  Cc: lizetao1, linux-kernel

Gcc report warning as follows:

arch/x86/boot/compressed/sev.c: In function ‘enforce_vmpl0’:
arch/x86/boot/compressed/sev.c:256:13: error: unused variable ‘err’
 [-Werror=unused-variable]

Fix it by removing the unused variable "err".

Fixes: 81cc3df9a90e ("x86/sev: Check the VMPL level")
Signed-off-by: Li Zetao <lizetao1@huawei.com>
---
 arch/x86/boot/compressed/sev.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/x86/boot/compressed/sev.c b/arch/x86/boot/compressed/sev.c
index c93930d5ccbd..b9451761a69a 100644
--- a/arch/x86/boot/compressed/sev.c
+++ b/arch/x86/boot/compressed/sev.c
@@ -253,7 +253,6 @@ void do_boot_stage2_vc(struct pt_regs *regs, unsigned long exit_code)
 static void enforce_vmpl0(void)
 {
 	u64 attrs;
-	int err;
 
 	/*
 	 * RMPADJUST modifies RMP permissions of a lesser-privileged (numerically
-- 
2.34.1


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

end of thread, other threads:[~2022-09-26 18:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-23 11:32 [PATCH -next] x86/sev: Remove unused variable "err" in enforce_vmpl0() Li Zetao
2022-09-23 12:19 ` Borislav Petkov
2022-09-24 10:18   ` Li Zetao
2022-09-26 14:48     ` Borislav Petkov
2022-09-26 17:52       ` H. Peter Anvin
2022-09-26 17:59         ` Borislav Petkov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.