Module Name: src
Committed By: riastradh
Date: Mon Apr 11 13:18:13 UTC 2016
Modified Files:
src/sys/kern: subr_psref.c
Log Message:
Need <sys/param.h> for splraiseipl.
How did this pass the releng autobuilds before? We went through
several full builds of HEAD after I committed subr_psref.c.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 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.1 src/sys/kern/subr_psref.c:1.2
--- src/sys/kern/subr_psref.c:1.1 Sat Apr 9 06:21:16 2016
+++ src/sys/kern/subr_psref.c Mon Apr 11 13:18:13 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_psref.c,v 1.1 2016/04/09 06:21:16 riastradh Exp $ */
+/* $NetBSD: subr_psref.c,v 1.2 2016/04/11 13:18:13 riastradh Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -64,9 +64,10 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_psref.c,v 1.1 2016/04/09 06:21:16 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_psref.c,v 1.2 2016/04/11 13:18:13 riastradh Exp $");
#include <sys/types.h>
+#include <sys/param.h>
#include <sys/condvar.h>
#include <sys/cpu.h>
#include <sys/intr.h>