Skip to content

Commit

Permalink
Disable VirtIO Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen committed Jan 15, 2024
1 parent ff10a30 commit 4678ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ BOOL virtio_console_can_write_data(VIRTIODevice *s)
QueueState *qs = &s->queue[0];
uint16_t avail_idx;

if (!qs->ready) { printf("virtio_console_can_write_data: ready=%d\n", qs->ready); }////
//if (!qs->ready) { printf("virtio_console_can_write_data: ready=%d\n", qs->ready); }////
if (!qs->ready)
return FALSE;
avail_idx = virtio_read16(s, qs->avail_addr + 2);
Expand Down

0 comments on commit 4678ed5

Please sign in to comment.