qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name
@ 2017-04-10  6:06 Nikunj A Dadhania
  2017-04-10  7:56 ` Alex Bennée
  2017-04-10 17:26 ` Richard Henderson
  0 siblings, 2 replies; 8+ messages in thread
From: Nikunj A Dadhania @ 2017-04-10  6:06 UTC (permalink / raw)
  To: qemu-devel, peter.maydell, rth
  Cc: pbonzini, crosthwaite.peter, david, alex.bennee, nikunj

While the configure script generates TARGET_SUPPORTS_MTTCG define, one
of the define is cpus.c is checking wrong name: TARGET_SUPPORT_MTTCG

Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
---
 cpus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpus.c b/cpus.c
index 68fdbc4..58d90aa 100644
--- a/cpus.c
+++ b/cpus.c
@@ -202,7 +202,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp)
             } else if (use_icount) {
                 error_setg(errp, "No MTTCG when icount is enabled");
             } else {
-#ifndef TARGET_SUPPORT_MTTCG
+#ifndef TARGET_SUPPORTS_MTTCG
                 error_report("Guest not yet converted to MTTCG - "
                              "you may get unexpected results");
 #endif
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-04-10 22:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-10  6:06 [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name Nikunj A Dadhania
2017-04-10  7:56 ` Alex Bennée
2017-04-10 17:26 ` Richard Henderson
2017-04-10 17:29   ` Peter Maydell
2017-04-10 17:31     ` Richard Henderson
2017-04-10 17:44     ` Greg Kurz
2017-04-10 17:49       ` Richard Henderson
2017-04-10 22:13         ` Greg Kurz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).