Re: [Qemu-devel] [PATCH] vl: Error messages need to go to stderr, fix some

2016-06-20 Thread Markus Armbruster
Paolo Bonzini writes: > On 13/06/2016 11:03, Markus Armbruster wrote: >> Paolo, will you pick this up, or do you want me to take it through my >> (currently empty) error-next branch? > > I can pick it up. Since other error-related patches have since accumulated, I posted a pull request for all o

Re: [Qemu-devel] [PATCH] vl: Error messages need to go to stderr, fix some

2016-06-13 Thread Paolo Bonzini
On 13/06/2016 11:03, Markus Armbruster wrote: > Paolo, will you pick this up, or do you want me to take it through my > (currently empty) error-next branch? I can pick it up. Paolo > Markus Armbruster writes: > >> We print a few fatal error messages to stdout instead of stderr. >> Reproducer

Re: [Qemu-devel] [PATCH] vl: Error messages need to go to stderr, fix some

2016-06-13 Thread Markus Armbruster
Paolo, will you pick this up, or do you want me to take it through my (currently empty) error-next branch? Markus Armbruster writes: > We print a few fatal error messages to stdout instead of stderr. > Reproducer: > > $ qemu-system-x86_64 -g 1024x768 > Option g not supported for this tar

Re: [Qemu-devel] [PATCH] vl: Error messages need to go to stderr, fix some

2016-05-31 Thread Marcel Apfelbaum
On 05/31/2016 11:31 AM, Markus Armbruster wrote: We print a few fatal error messages to stdout instead of stderr. Reproducer: $ qemu-system-x86_64 -g 1024x768 Option g not supported for this target $ qemu-system-x86_64 -g 1024x768 >/dev/null Fix by printing them with error_report

[Qemu-devel] [PATCH] vl: Error messages need to go to stderr, fix some

2016-05-31 Thread Markus Armbruster
We print a few fatal error messages to stdout instead of stderr. Reproducer: $ qemu-system-x86_64 -g 1024x768 Option g not supported for this target $ qemu-system-x86_64 -g 1024x768 >/dev/null Fix by printing them with error_report(). This also improves the messages. The above one be