Module Name:    src
Committed By:   riastradh
Date:           Mon Nov 13 02:12:29 UTC 2017

Modified Files:
        src/sys/arch/xen/xenbus: xenbus_comms.c

Log Message:
Missed a spot: preserve known_mpsafe = (level != IPL_VM).

Noted by kre -- sorry!


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/xen/xenbus/xenbus_comms.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/xen/xenbus/xenbus_comms.c
diff -u src/sys/arch/xen/xenbus/xenbus_comms.c:1.16 src/sys/arch/xen/xenbus/xenbus_comms.c:1.17
--- src/sys/arch/xen/xenbus/xenbus_comms.c:1.16	Mon Nov  6 15:27:09 2017
+++ src/sys/arch/xen/xenbus/xenbus_comms.c	Mon Nov 13 02:12:29 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: xenbus_comms.c,v 1.16 2017/11/06 15:27:09 cherry Exp $ */
+/* $NetBSD: xenbus_comms.c,v 1.17 2017/11/13 02:12:29 riastradh Exp $ */
 /******************************************************************************
  * xenbus_comms.c
  *
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xenbus_comms.c,v 1.16 2017/11/06 15:27:09 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xenbus_comms.c,v 1.17 2017/11/13 02:12:29 riastradh Exp $");
 
 #include <sys/types.h>
 #include <sys/null.h> 
@@ -222,7 +222,7 @@ xb_init_comms(device_t dev)
 	evtchn = xen_start_info.store_evtchn;
 
 	ih = intr_establish_xname(0, &xen_pic, evtchn, IST_LEVEL, IPL_TTY,
-	    wake_waiting, NULL, true, "xenbus");
+	    wake_waiting, NULL, false, "xenbus");
 
 	hypervisor_enable_event(evtchn);
 	aprint_verbose_dev(dev, "using event channel %d\n", evtchn);

Reply via email to