Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-3]: src/sys/arch/xen/xen Pull up revision 1.3 (requested by bouye...
details: https://anonhg.NetBSD.org/src/rev/435abf558cb7
branches: netbsd-3
changeset: 574951:435abf558cb7
user: tron <tron%NetBSD.org@localhost>
date: Sun Mar 20 14:32:20 2005 +0000
description:
Pull up revision 1.3 (requested by bouyer in ticket #31):
print the IRQ used by the domain controller.
diffstat:
sys/arch/xen/xen/ctrl_if.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (26 lines):
diff -r c2dba49ea7f5 -r 435abf558cb7 sys/arch/xen/xen/ctrl_if.c
--- a/sys/arch/xen/xen/ctrl_if.c Sun Mar 20 14:30:22 2005 +0000
+++ b/sys/arch/xen/xen/ctrl_if.c Sun Mar 20 14:32:20 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ctrl_if.c,v 1.2 2005/03/09 22:39:21 bouyer Exp $ */
+/* $NetBSD: ctrl_if.c,v 1.2.2.1 2005/03/20 14:32:20 tron Exp $ */
/******************************************************************************
* ctrl_if.c
@@ -9,7 +9,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ctrl_if.c,v 1.2 2005/03/09 22:39:21 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ctrl_if.c,v 1.2.2.1 2005/03/20 14:32:20 tron Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -496,6 +496,7 @@
ctrl_if_evtchn = xen_start_info.domain_controller_evtchn;
ctrl_if_irq = bind_evtchn_to_irq(ctrl_if_evtchn);
+ aprint_verbose("Domain controller: using irq %d\n", ctrl_if_irq);
event_set_handler(ctrl_if_irq, &ctrl_if_interrupt, NULL, IPL_HIGH + 2);
hypervisor_enable_irq(ctrl_if_irq);
Home |
Main Index |
Thread Index |
Old Index