mirror of https://github.com/xemu-project/xemu.git
qxl: add dev id to guest prints
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
1f0ff2fb99
commit
6ebebb551a
3
hw/qxl.c
3
hw/qxl.c
|
@ -985,7 +985,8 @@ static void ioport_write(void *opaque, uint32_t addr, uint32_t val)
|
||||||
break;
|
break;
|
||||||
case QXL_IO_LOG:
|
case QXL_IO_LOG:
|
||||||
if (d->guestdebug) {
|
if (d->guestdebug) {
|
||||||
fprintf(stderr, "qxl/guest: %s", d->ram->log_buf);
|
fprintf(stderr, "qxl/guest-%d: %ld: %s", d->id,
|
||||||
|
qemu_get_clock_ns(vm_clock), d->ram->log_buf);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case QXL_IO_RESET:
|
case QXL_IO_RESET:
|
||||||
|
|
Loading…
Reference in New Issue