[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 5/9] target/loongarch: Implement kvm_arch_init function
|
From: |
xianglai li |
|
Subject: |
[PATCH v1 5/9] target/loongarch: Implement kvm_arch_init function |
|
Date: |
Wed, 8 Nov 2023 09:41:37 +0800 |
From: Tianrui Zhao <zhaotianrui@loongson.cn>
Implement the kvm_arch_init of loongarch, in the function, the
KVM_CAP_MP_STATE cap is checked by kvm ioctl.
Signed-off-by: Tianrui Zhao <zhaotianrui@loongson.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: xianglai li <lixianglai@loongson.cn>
---
target/loongarch/kvm.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target/loongarch/kvm.c b/target/loongarch/kvm.c
index e7c9ef830c..29944b9ef8 100644
--- a/target/loongarch/kvm.c
+++ b/target/loongarch/kvm.c
@@ -665,6 +665,7 @@ int kvm_arch_get_default_type(MachineState *ms)
int kvm_arch_init(MachineState *ms, KVMState *s)
{
+ cap_has_mp_state = kvm_check_extension(s, KVM_CAP_MP_STATE);
return 0;
}
--
2.39.1
- [PATCH v1 0/9] Add loongarch kvm accel support, xianglai li, 2023/11/07
- [PATCH v1 1/9] linux-headers: Add KVM headers for loongarch, xianglai li, 2023/11/07
- [PATCH v1 3/9] target/loongarch: Supplement vcpu env initial when vcpu reset, xianglai li, 2023/11/07
- [PATCH v1 8/9] target/loongarch: Implement set vcpu intr for kvm, xianglai li, 2023/11/07
- [PATCH v1 2/9] target/loongarch: Define some kvm_arch interfaces, xianglai li, 2023/11/07
- [PATCH v1 5/9] target/loongarch: Implement kvm_arch_init function,
xianglai li <=
- [PATCH v1 9/9] target/loongarch: Add loongarch kvm into meson build, xianglai li, 2023/11/07
- [PATCH v1 6/9] target/loongarch: Implement kvm_arch_init_vcpu, xianglai li, 2023/11/07
- [PATCH v1 7/9] target/loongarch: Implement kvm_arch_handle_exit, xianglai li, 2023/11/07
- [PATCH v1 4/9] target/loongarch: Implement kvm get/set registers, xianglai li, 2023/11/07