Re: [Qemu-devel] [PATCH v2 3/5] raw-posix: DPRINTF instead of DEBUG_BLOCK_PRINT

2015-05-11 Thread Eric Blake
On 05/08/2015 02:10 PM, Eric Blake wrote: > On 05/08/2015 11:47 AM, Dimitris Aragiorgis wrote: >> Building the QEMU tools fails if we #define DEBUG_BLOCK inside >> block/raw-posix.c. Here instead of adding qemu-log.o in block-obj-y >> so that DEBUG_BLOCK_PRINT can be used, we substitute the latter

Re: [Qemu-devel] [PATCH v2 3/5] raw-posix: DPRINTF instead of DEBUG_BLOCK_PRINT

2015-05-11 Thread Paolo Bonzini
On 11/05/2015 12:16, Kevin Wolf wrote: > Am 08.05.2015 um 19:47 hat Dimitris Aragiorgis geschrieben: >> > Building the QEMU tools fails if we #define DEBUG_BLOCK inside >> > block/raw-posix.c. Here instead of adding qemu-log.o in block-obj-y >> > so that DEBUG_BLOCK_PRINT can be used, we substitu

Re: [Qemu-devel] [PATCH v2 3/5] raw-posix: DPRINTF instead of DEBUG_BLOCK_PRINT

2015-05-11 Thread Kevin Wolf
Am 08.05.2015 um 19:47 hat Dimitris Aragiorgis geschrieben: > Building the QEMU tools fails if we #define DEBUG_BLOCK inside > block/raw-posix.c. Here instead of adding qemu-log.o in block-obj-y > so that DEBUG_BLOCK_PRINT can be used, we substitute the latter with > a simple DPRINTF(). > > Signed

Re: [Qemu-devel] [PATCH v2 3/5] raw-posix: DPRINTF instead of DEBUG_BLOCK_PRINT

2015-05-08 Thread Eric Blake
On 05/08/2015 11:47 AM, Dimitris Aragiorgis wrote: > Building the QEMU tools fails if we #define DEBUG_BLOCK inside > block/raw-posix.c. Here instead of adding qemu-log.o in block-obj-y > so that DEBUG_BLOCK_PRINT can be used, we substitute the latter with > a simple DPRINTF(). > > Signed-off-by:

[Qemu-devel] [PATCH v2 3/5] raw-posix: DPRINTF instead of DEBUG_BLOCK_PRINT

2015-05-08 Thread Dimitris Aragiorgis
Building the QEMU tools fails if we #define DEBUG_BLOCK inside block/raw-posix.c. Here instead of adding qemu-log.o in block-obj-y so that DEBUG_BLOCK_PRINT can be used, we substitute the latter with a simple DPRINTF(). Signed-off-by: Dimitris Aragiorgis --- block/raw-posix.c | 12 ++--