aboutsummaryrefslogtreecommitdiffstats
path: root/xen/drivers/char/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/drivers/char/console.c')
-rw-r--r--xen/drivers/char/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c
index de106c149e..6f6234c8d0 100644
--- a/xen/drivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -271,7 +271,7 @@ static void __serial_rx(char c, struct cpu_user_regs *regs)
if ( (serial_rx_prod-serial_rx_cons) != SERIAL_RX_SIZE )
serial_rx_ring[SERIAL_RX_MASK(serial_rx_prod++)] = c;
/* Always notify the guest: prevents receive path from getting stuck. */
- send_guest_virq(dom0->exec_domain[0], VIRQ_CONSOLE);
+ send_guest_virq(dom0->vcpu[0], VIRQ_CONSOLE);
}
static void serial_rx(char c, struct cpu_user_regs *regs)