2022-05-08 08:56:35

by Li kunyu

[permalink] [raw]
Subject: [PATCH] x86: Function missing integer return value

This function may need to return a value

Signed-off-by: Li kunyu <[email protected]>
---
arch/x86/kvm/mmu/mmu.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/x86/kvm/mmu/mmu.c b/arch/x86/kvm/mmu/mmu.c
index 64a2a7e2be90..68f33b932f94 100644
--- a/arch/x86/kvm/mmu/mmu.c
+++ b/arch/x86/kvm/mmu/mmu.c
@@ -6500,6 +6500,8 @@ static int kvm_nx_lpage_recovery_worker(struct kvm *kvm, uintptr_t data)

kvm_recover_nx_lpages(kvm);
}
+
+ return 0;
}

int kvm_mmu_post_init_vm(struct kvm *kvm)
--
2.18.2