From: Maxim Baryshnikov Date: Thu, 12 May 2016 20:33:22 +0000 (+0200) Subject: qemu: Launch qemu without x2apic support. Fiasco uses xapic, jailhouse is not needed... X-Git-Url: https://rtime.felk.cvut.cz/gitweb/jailhouse-test.git/commitdiff_plain/b6a43f679def8bac80e7f63eceb6fb326bb01132 qemu: Launch qemu without x2apic support. Fiasco uses xapic, jailhouse is not needed to work with x2apic. --- diff --git a/qemu-launch-scripts/start-qemu-amd.sh b/qemu-launch-scripts/start-qemu-amd.sh index 9a8420b..f51185f 100755 --- a/qemu-launch-scripts/start-qemu-amd.sh +++ b/qemu-launch-scripts/start-qemu-amd.sh @@ -14,7 +14,7 @@ fi echo RFSIMG="$RFSIMG" qemu-system-x86_64 -machine q35 -m 1G -enable-kvm -smp 4 \ -usbdevice keyboard \ - -cpu host,-kvm_pv_eoi,-kvm_steal_time,-kvm_asyncpf,-kvmclock,+svm,+x2apic \ + -cpu host,-kvm_pv_eoi,-kvm_steal_time,-kvm_asyncpf,-kvmclock,+svm,-x2apic \ -kernel "$KIMG" -append "root=/dev/sda memmap=66M$0x3b000000 nohpet" \ -drive file="$RFSIMG",format=raw,id=disk,if=none \ -device ide-hd,drive=disk -serial stdio -serial vc \ diff --git a/qemu-launch-scripts/start-qemu-intel.sh b/qemu-launch-scripts/start-qemu-intel.sh index 063c325..d3df6cb 100755 --- a/qemu-launch-scripts/start-qemu-intel.sh +++ b/qemu-launch-scripts/start-qemu-intel.sh @@ -15,7 +15,7 @@ echo RFSIMG="$RFSIMG" qemu-system-x86_64 -machine q35 -m 1G -enable-kvm -smp 4 \ -usbdevice keyboard \ - -cpu kvm64,-kvm_pv_eoi,-kvm_steal_time,-kvm_asyncpf,-kvmclock,+vmx,+x2apic \ + -cpu kvm64,-kvm_pv_eoi,-kvm_steal_time,-kvm_asyncpf,-kvmclock,+vmx,-x2apic \ -kernel "$KIMG" -append "root=/dev/sda memmap=66M$0x3b000000 nohpet" \ -drive file="$RFSIMG",format=raw,id=disk,if=none \ -device ide-hd,drive=disk -serial stdio -serial vc \