Message ID | 1248131416-11272-5-git-send-email-glommer@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/vl.c b/vl.c index 86a6d70..ae9e0b4 100644 --- a/vl.c +++ b/vl.c @@ -5935,7 +5935,6 @@ int main(int argc, char **argv, char **envp) } } -#ifdef KVM_UPSTREAM if (kvm_enabled()) { int ret; @@ -5945,16 +5944,6 @@ int main(int argc, char **argv, char **envp) exit(1); } } -#endif - -#ifdef CONFIG_KVM - if (kvm_enabled()) { - if (kvm_init(smp_cpus) < 0) { - fprintf(stderr, "Could not initialize KVM, will disable KVM support\n"); - exit(1); - } - } -#endif if (monitor_device) { monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
Our code now looks like qemu's a lot. Remove ours, and leave just qemu's. Signed-off-by: Glauber Costa <glommer@redhat.com> --- vl.c | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-)