|
Mark McLoughlin |
6780ef |
From 00782050707fbb999bfffe722794490d2211a0a9 Mon Sep 17 00:00:00 2001
|
|
Mark McLoughlin |
6780ef |
From: Dustin Kirkland <kirkland@canonical.com>
|
|
Mark McLoughlin |
6780ef |
Date: Fri, 4 Sep 2009 14:38:30 -0500
|
|
Mark McLoughlin |
6780ef |
Subject: [PATCH] qemu-kvm: fix segfault when running kvm without /dev/kvm
|
|
Richard W.M. Jones |
9d0bd0 |
|
|
Mark McLoughlin |
6780ef |
qemu-kvm segfaults on systems without access to /dev/kvm.
|
|
Mark McLoughlin |
6780ef |
The global kvm_allowed is being set too late in vl.c.
|
|
Richard W.M. Jones |
9d0bd0 |
|
|
Mark McLoughlin |
6780ef |
This patch moves the kvm initialization a bit higher in the
|
|
Mark McLoughlin |
6780ef |
vl.c main, just after the daemonize fork.
|
|
Richard W.M. Jones |
9d0bd0 |
|
|
Mark McLoughlin |
6780ef |
This fix is intended to be a short term solution, solving the
|
|
Mark McLoughlin |
6780ef |
segfaults.
|
|
Mark McLoughlin |
b77f8b |
|
|
Mark McLoughlin |
6780ef |
In the longer term, the suggested approach requires a bit more
|
|
Mark McLoughlin |
6780ef |
development and testing:
|
|
Mark McLoughlin |
6780ef |
* If no arg given => try kvm, try kqemu, try tcg
|
|
Mark McLoughlin |
6780ef |
* If --accelmode arg given => try $arg, and fail if unavailable
|
|
Mark McLoughlin |
6780ef |
|
|
Mark McLoughlin |
6780ef |
(cherry picked from commit c06b44bfc9814930b6a94db7bbeb3be1cd39c0d2)
|
|
Mark McLoughlin |
6780ef |
|
|
Mark McLoughlin |
6780ef |
Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
|
|
Mark McLoughlin |
6780ef |
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
|
|
Mark McLoughlin |
6780ef |
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
|
|
Mark McLoughlin |
b77f8b |
Fedora-patch: qemu-fix-no-kvm-segfault.patch
|
|
Richard W.M. Jones |
9d0bd0 |
---
|
|
Mark McLoughlin |
6780ef |
vl.c | 28 ++++++++++++++--------------
|
|
Mark McLoughlin |
6780ef |
1 files changed, 14 insertions(+), 14 deletions(-)
|
|
Mark McLoughlin |
6780ef |
|
|
Mark McLoughlin |
6780ef |
diff --git a/vl.c b/vl.c
|
|
Mark McLoughlin |
6780ef |
index db75470..26bced8 100644
|
|
Mark McLoughlin |
6780ef |
--- a/vl.c
|
|
Mark McLoughlin |
6780ef |
+++ b/vl.c
|
|
Mark McLoughlin |
6780ef |
@@ -5831,6 +5831,20 @@ int main(int argc, char **argv, char **envp)
|
|
Mark McLoughlin |
6780ef |
}
|
|
Mark McLoughlin |
6780ef |
#endif
|
|
Richard W.M. Jones |
9d0bd0 |
|
|
Mark McLoughlin |
6780ef |
+ if (kvm_enabled()) {
|
|
Mark McLoughlin |
6780ef |
+ int ret;
|
|
Mark McLoughlin |
6780ef |
+
|
|
Mark McLoughlin |
6780ef |
+ ret = kvm_init(smp_cpus);
|
|
Mark McLoughlin |
6780ef |
+ if (ret < 0) {
|
|
Mark McLoughlin |
6780ef |
+#if defined(KVM_UPSTREAM) || defined(NO_CPU_EMULATION)
|
|
Mark McLoughlin |
6780ef |
+ fprintf(stderr, "failed to initialize KVM\n");
|
|
Mark McLoughlin |
6780ef |
+ exit(1);
|
|
Mark McLoughlin |
6780ef |
+#endif
|
|
Mark McLoughlin |
6780ef |
+ fprintf(stderr, "Could not initialize KVM, will disable KVM support\n");
|
|
Mark McLoughlin |
6780ef |
+ kvm_allowed = 0;
|
|
Mark McLoughlin |
6780ef |
+ }
|
|
Mark McLoughlin |
6780ef |
+ }
|
|
Mark McLoughlin |
6780ef |
+
|
|
Mark McLoughlin |
6780ef |
#ifdef CONFIG_KQEMU
|
|
Mark McLoughlin |
6780ef |
if (smp_cpus > 1)
|
|
Mark McLoughlin |
6780ef |
kqemu_allowed = 0;
|
|
Mark McLoughlin |
6780ef |
@@ -6002,20 +6016,6 @@ int main(int argc, char **argv, char **envp)
|
|
Mark McLoughlin |
6780ef |
}
|
|
Mark McLoughlin |
6780ef |
}
|
|
Mark McLoughlin |
6780ef |
|
|
Mark McLoughlin |
6780ef |
- if (kvm_enabled()) {
|
|
Mark McLoughlin |
6780ef |
- int ret;
|
|
Mark McLoughlin |
6780ef |
-
|
|
Mark McLoughlin |
6780ef |
- ret = kvm_init(smp_cpus);
|
|
Mark McLoughlin |
6780ef |
- if (ret < 0) {
|
|
Mark McLoughlin |
6780ef |
-#if defined(KVM_UPSTREAM) || defined(NO_CPU_EMULATION)
|
|
Mark McLoughlin |
6780ef |
- fprintf(stderr, "failed to initialize KVM\n");
|
|
Mark McLoughlin |
6780ef |
- exit(1);
|
|
Mark McLoughlin |
6780ef |
-#endif
|
|
Mark McLoughlin |
6780ef |
- fprintf(stderr, "Could not initialize KVM, will disable KVM support\n");
|
|
Mark McLoughlin |
6780ef |
- kvm_allowed = 0;
|
|
Mark McLoughlin |
6780ef |
- }
|
|
Mark McLoughlin |
6780ef |
- }
|
|
Richard W.M. Jones |
9d0bd0 |
-
|
|
Mark McLoughlin |
6780ef |
if (monitor_device) {
|
|
Mark McLoughlin |
6780ef |
monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
|
|
Mark McLoughlin |
6780ef |
if (!monitor_hd) {
|
|
Richard W.M. Jones |
9d0bd0 |
--
|
|
Mark McLoughlin |
b77f8b |
1.6.2.5
|
|
Richard W.M. Jones |
9d0bd0 |
|