Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-27 Thread Markus Armbruster
Stefan Hajnoczi writes: > On Mon, May 26, 2014 at 05:59:03PM +0200, Markus Armbruster wrote: >> Kevin Wolf writes: >> >> > Am 26.05.2014 um 17:02 hat Markus Armbruster geschrieben: >> >> Stefan Hajnoczi writes: >> >> >> >> > On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: >> >> >> Rep

Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-27 Thread Stefan Hajnoczi
On Mon, May 26, 2014 at 05:59:03PM +0200, Markus Armbruster wrote: > Kevin Wolf writes: > > > Am 26.05.2014 um 17:02 hat Markus Armbruster geschrieben: > >> Stefan Hajnoczi writes: > >> > >> > On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: > >> >> Replace fprintf(stderr,...) with error

Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-26 Thread Markus Armbruster
Kevin Wolf writes: > Am 26.05.2014 um 17:02 hat Markus Armbruster geschrieben: >> Stefan Hajnoczi writes: >> >> > On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: >> >> Replace fprintf(stderr,...) with error_report() in files block/*, block.c, >> >> block-migration.c and blockdev.c. The

Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-26 Thread Kevin Wolf
Am 26.05.2014 um 17:02 hat Markus Armbruster geschrieben: > Stefan Hajnoczi writes: > > > On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: > >> Replace fprintf(stderr,...) with error_report() in files block/*, block.c, > >> block-migration.c and blockdev.c. The trailing "\n"s of the @fmt a

Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-26 Thread Markus Armbruster
Stefan Hajnoczi writes: > On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: >> Replace fprintf(stderr,...) with error_report() in files block/*, block.c, >> block-migration.c and blockdev.c. The trailing "\n"s of the @fmt argument >> have been removed because @fmt of error_report() should n

Re: [Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-26 Thread Stefan Hajnoczi
On Mon, May 26, 2014 at 09:44:03AM +0800, Le Tan wrote: > Replace fprintf(stderr,...) with error_report() in files block/*, block.c, > block-migration.c and blockdev.c. The trailing "\n"s of the @fmt argument > have been removed because @fmt of error_report() should not contain newline. > > Signed

[Qemu-devel] [PATCH v4] block: replace fprintf(stderr, ...) with error_report()

2014-05-25 Thread Le Tan
Replace fprintf(stderr,...) with error_report() in files block/*, block.c, block-migration.c and blockdev.c. The trailing "\n"s of the @fmt argument have been removed because @fmt of error_report() should not contain newline. Signed-off-by: Le Tan --- block-migration.c |6 +-- block.c