qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] vl.c: prohibit simultaneous use of -icount and kvm


From: Max Filippov
Subject: [Qemu-devel] [PATCH] vl.c: prohibit simultaneous use of -icount and kvm
Date: Thu, 10 Nov 2011 14:19:40 +0400

Signed-off-by: Max Filippov <address@hidden>
---
 vl.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/vl.c b/vl.c
index f169aac..cac665e 100644
--- a/vl.c
+++ b/vl.c
@@ -3226,7 +3226,13 @@ int main(int argc, char **argv, char **envp)
         fprintf(stderr, "could not initialize alarm timer\n");
         exit(1);
     }
-    configure_icount(icount_option);
+
+    if (icount_option && kvm_enabled()) {
+        fprintf(stderr, "-icount is not allowed with kvm acceleration\n");
+        exit(1);
+    } else {
+        configure_icount(icount_option);
+    }
 
     if (net_init_clients() < 0) {
         exit(1);
-- 
1.7.2.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]