]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
KVM: arm64: Fix error return code in init_hyp_mode()
authorWang Wensheng <wangwensheng4@huawei.com>
Tue, 6 Apr 2021 12:17:59 +0000 (12:17 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 14 May 2021 08:50:03 +0000 (10:50 +0200)
[ Upstream commit 52b9e265d22bccc5843e167da76ab119874e2883 ]

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
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm64/kvm/arm.c

index b25b4c19feebcaa61e6202ca5385981571be36c5..64258d26ba24045af12b48804df77eac4a70b90e 100644 (file)
@@ -1809,8 +1809,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;