[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/3] target/riscv/kvm: change kvm_reg_id to uint64_t
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH 1/3] target/riscv/kvm: change kvm_reg_id to uint64_t |
Date: |
Tue, 23 Jan 2024 13:17:12 -0300 |
The field isn't big enough to hold an uint64_t kvm register and Vector
registers will end up overflowing it.
Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
---
target/riscv/kvm/kvm-cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/riscv/kvm/kvm-cpu.c b/target/riscv/kvm/kvm-cpu.c
index 4dec91740b..902180e8a5 100644
--- a/target/riscv/kvm/kvm-cpu.c
+++ b/target/riscv/kvm/kvm-cpu.c
@@ -145,7 +145,7 @@ typedef struct KVMCPUConfig {
const char *name;
const char *description;
target_ulong offset;
- int kvm_reg_id;
+ uint64_t kvm_reg_id;
bool user_set;
bool supported;
} KVMCPUConfig;
--
2.43.0