Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/xen/xenbus Missed a spot: preserve known_mpsafe = (...
details: https://anonhg.NetBSD.org/src/rev/a02d3bc3fdc1
branches: trunk
changeset: 357491:a02d3bc3fdc1
user: riastradh <riastradh%NetBSD.org@localhost>
date: Mon Nov 13 02:12:29 2017 +0000
description:
Missed a spot: preserve known_mpsafe = (level != IPL_VM).
Noted by kre -- sorry!
diffstat:
sys/arch/xen/xenbus/xenbus_comms.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 4a1c320e7289 -r a02d3bc3fdc1 sys/arch/xen/xenbus/xenbus_comms.c
--- a/sys/arch/xen/xenbus/xenbus_comms.c Mon Nov 13 01:51:47 2017 +0000
+++ b/sys/arch/xen/xenbus/xenbus_comms.c Mon Nov 13 02:12:29 2017 +0000
@@ -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 @@
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);
Home |
Main Index |
Thread Index |
Old Index