qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 1/2] vl: trivial: minor tweaks to a max-cpu erro


From: Eduardo Habkost
Subject: Re: [Qemu-devel] [PATCH 1/2] vl: trivial: minor tweaks to a max-cpu error msg
Date: Mon, 26 Oct 2015 11:38:22 -0200
User-agent: Mutt/1.5.23 (2014-03-12)

On Mon, Oct 26, 2015 at 02:00:49PM +0100, Andrew Jones wrote:
> On Tue, Oct 20, 2015 at 09:12:18AM +0200, Markus Armbruster wrote:
> > Andrew Jones <address@hidden> writes:
> > 
> > > Signed-off-by: Andrew Jones <address@hidden>
> > > ---
> > >  vl.c | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/vl.c b/vl.c
> > > index 7c806a2428399..9a64b75ebbd24 100644
> > > --- a/vl.c
> > > +++ b/vl.c
> > > @@ -4080,8 +4080,8 @@ int main(int argc, char **argv, char **envp)
> > >  
> > >      machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default 
> > > to UP */
> > >      if (max_cpus > machine_class->max_cpus) {
> > > -        fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max 
> > > cpus "
> > > -                "supported by machine `%s' (%d)\n", max_cpus,
> > > +        fprintf(stderr, "Number of SMP CPUs requested (%d) exceeds max 
> > > CPUs "
> > > +                "supported by machine '%s' (%d)\n", max_cpus,
> > >                  machine_class->name, machine_class->max_cpus);
> > >          exit(1);
> > >      }
> > 
> > While you're touching this, error_report(), please.
> >
> 
> Good call. Eduardo, I'll send you a v2 now.

v1 was already merged, as it was an improvement anyway. A separate patch
to use error_report() will be welcome, though.

-- 
Eduardo



reply via email to

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