[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 3/6] kvm: workaround a possible KVM bug when usin
|
From: |
Jordan Justen |
|
Subject: |
[Qemu-devel] [PATCH v2 3/6] kvm: workaround a possible KVM bug when using KVM_MEM_READONLY |
|
Date: |
Tue, 30 Apr 2013 23:56:30 -0700 |
On a Linux 3.8.0 based kernel, I occasionally saw a situation
where the memory region would continue to trap on memory
read even though KVM_MEM_READONLY was set.
I found that if I set the slot to a size of 0, and before
setting the slot, it would then behave as expected.
Signed-off-by: Jordan Justen <address@hidden>
Cc: Xiao Guangrong <address@hidden>
---
kvm-all.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/kvm-all.c b/kvm-all.c
index 95e6bf2..e2ddbcb 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -205,6 +205,13 @@ static int kvm_set_user_memory_region(KVMState *s, KVMSlot
*slot)
if (s->migration_log) {
mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
}
+ if (mem.flags & KVM_MEM_READONLY && mem.memory_size != 0) {
+ /* Workaround an issue with setting a READONLY slot. Set the
+ * slot size to 0 before setting the slot to the desired value. */
+ mem.memory_size = 0;
+ kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
+ mem.memory_size = slot->memory_size;
+ }
return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
}
--
1.7.10.4
- [Qemu-devel] [PATCH v2 0/6] KVM flash memory support, Jordan Justen, 2013/05/01
- [Qemu-devel] [PATCH v2 1/6] kvm: add kvm_readonly_mem_enabled, Jordan Justen, 2013/05/01
- [Qemu-devel] [PATCH v2 4/6] pflash_cfi01: memory region should be set to enable readonly mode, Jordan Justen, 2013/05/01
- [Qemu-devel] [PATCH v2 2/6] kvm: support using KVM_MEM_READONLY flag for readonly regions, Jordan Justen, 2013/05/01
- [Qemu-devel] [PATCH v2 6/6] pc_sysfw: change rom_only default to 0, Jordan Justen, 2013/05/01
- [Qemu-devel] [PATCH v2 3/6] kvm: workaround a possible KVM bug when using KVM_MEM_READONLY,
Jordan Justen <=
- [Qemu-devel] [PATCH v2 5/6] pc_sysfw: allow flash (-pflash) memory to be used with KVM, Jordan Justen, 2013/05/01