Module Name: src
Committed By: riastradh
Date: Mon Apr 11 13:52:23 UTC 2016
Modified Files:
src/sys/kern: subr_psref.c
Log Message:
Back out previous -- <sys/intr.h> does provide splraiseipl.
Man page says <sys/param.h>, but that's wrong.
The real problem was that rump didn't have splraiseipl at all, and
that already got fixed before I woke up this morning and panicked
because I had obviously broken all the builds!
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/kern/subr_psref.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/kern/subr_psref.c
diff -u src/sys/kern/subr_psref.c:1.2 src/sys/kern/subr_psref.c:1.3
--- src/sys/kern/subr_psref.c:1.2 Mon Apr 11 13:18:13 2016
+++ src/sys/kern/subr_psref.c Mon Apr 11 13:52:23 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_psref.c,v 1.2 2016/04/11 13:18:13 riastradh Exp $ */
+/* $NetBSD: subr_psref.c,v 1.3 2016/04/11 13:52:23 riastradh Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -64,10 +64,9 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_psref.c,v 1.2 2016/04/11 13:18:13 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_psref.c,v 1.3 2016/04/11 13:52:23 riastradh Exp $");
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/condvar.h>
#include <sys/cpu.h>
#include <sys/intr.h>