Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Greg Kurz
On Mon, 10 Apr 2017 10:49:12 -0700 Richard Henderson wrote: > On 04/10/2017 10:44 AM, Greg Kurz wrote: > > On Mon, 10 Apr 2017 18:29:57 +0100 > > Peter Maydell wrote: > > > >> On 10 April 2017 at 18:26, Richard Henderson wrote: > >>> On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: >

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Richard Henderson
On 04/10/2017 10:44 AM, Greg Kurz wrote: On Mon, 10 Apr 2017 18:29:57 +0100 Peter Maydell wrote: On 10 April 2017 at 18:26, Richard Henderson wrote: On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: --- a/cpus.c +++ b/cpus.c @@ -202,7 +202,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error *

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Greg Kurz
On Mon, 10 Apr 2017 18:29:57 +0100 Peter Maydell wrote: > On 10 April 2017 at 18:26, Richard Henderson wrote: > > On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: > >> --- a/cpus.c > >> +++ b/cpus.c > >> @@ -202,7 +202,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp) > >>

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Richard Henderson
On 04/10/2017 10:29 AM, Peter Maydell wrote: On 10 April 2017 at 18:26, Richard Henderson wrote: On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: --- a/cpus.c +++ b/cpus.c @@ -202,7 +202,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp) } else if (use_icount) {

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Peter Maydell
On 10 April 2017 at 18:26, Richard Henderson wrote: > On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: >> --- 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 MTTC

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Richard Henderson
On 04/09/2017 11:06 PM, Nikunj A Dadhania wrote: 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 --- cpus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -

Re: [Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-10 Thread Alex Bennée
Nikunj A Dadhania writes: > 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 > --- > cpus.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a

[Qemu-devel] [PATCH fix for-2.9] cpus: fix wrong define name

2017-04-09 Thread Nikunj A Dadhania
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 --- cpus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpus.c b/cpus.c index 68fdbc4..58d90aa 10064