projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70f5e4a
)
KVM: arm64: Fix error return code in init_hyp_mode()
author
Wang Wensheng
<wangwensheng4@huawei.com>
Tue, 6 Apr 2021 12:17:59 +0000
(12:17 +0000)
committer
Marc Zyngier
<maz@kernel.org>
Tue, 6 Apr 2021 13:20:23 +0000
(14:20 +0100)
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes:
eeeee7193df0
("KVM: arm64: Bootstrap PSCI SMC handler in nVHE EL2")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Wensheng <wangwensheng4@huawei.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link:
https://lore.kernel.org/r/20210406121759.5407-1-wangwensheng4@huawei.com
arch/arm64/kvm/arm.c
patch
|
blob
|
history
diff --git
a/arch/arm64/kvm/arm.c
b/arch/arm64/kvm/arm.c
index
7f06ba7
..
8526101
100644
(file)
--- a/
arch/arm64/kvm/arm.c
+++ b/
arch/arm64/kvm/arm.c
@@
-1808,8
+1808,10
@@
static int init_hyp_mode(void)
if (is_protected_kvm_enabled()) {
init_cpu_logical_map();
- if (!init_psci_relay())
+ if (!init_psci_relay()) {
+ err = -ENODEV;
goto out_err;
+ }
}
return 0;