* qemu-kvm-x86: fix e820 reservation
@ 2010-10-25 23:10 Marcelo Tosatti
0 siblings, 0 replies; only message in thread
From: Marcelo Tosatti @ 2010-10-25 23:10 UTC (permalink / raw)
To: kvm
e820 reserved range should start at 0xfeffc000, which includes
the EPT identity page, not 0xfeffd000.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c
index ec7d419..20b7d6d 100644
--- a/qemu-kvm-x86.c
+++ b/qemu-kvm-x86.c
@@ -32,13 +32,6 @@ extern unsigned int kvm_shadow_memory;
int kvm_set_tss_addr(kvm_context_t kvm, unsigned long addr)
{
int r;
- /*
- * Tell fw_cfg to notify the BIOS to reserve the range.
- */
- if (e820_add_entry(addr, 0x4000, E820_RESERVED) < 0) {
- perror("e820_add_entry() table is full");
- exit(1);
- }
r = kvm_vm_ioctl(kvm_state, KVM_SET_TSS_ADDR, addr);
if (r < 0) {
@@ -146,6 +139,14 @@ int kvm_arch_create(kvm_context_t kvm, unsigned long phys_mem_bytes,
return r;
}
+ /*
+ * Tell fw_cfg to notify the BIOS to reserve the range.
+ */
+ if (e820_add_entry(0xfeffc000, 0x4000, E820_RESERVED) < 0) {
+ perror("e820_add_entry() table is full");
+ exit(1);
+ }
+
r = kvm_create_pit(kvm);
if (r < 0) {
return r;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-10-25 23:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-25 23:10 qemu-kvm-x86: fix e820 reservation Marcelo Tosatti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox