Module Name: src
Committed By: andvar
Date: Mon Jan 15 20:35:23 UTC 2024
Modified Files:
src/sys/arch/arm/arm32: vm_machdep.c
Log Message:
Include <sys/syslog.h> with "#ifdef STACKCHECKS" guard.
The include was lost on rev 1.77 during includes cleanup and KNF, however
it is still needed with STACKCHECKS build option.
To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 src/sys/arch/arm/arm32/vm_machdep.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/arm/arm32/vm_machdep.c
diff -u src/sys/arch/arm/arm32/vm_machdep.c:1.78 src/sys/arch/arm/arm32/vm_machdep.c:1.79
--- src/sys/arch/arm/arm32/vm_machdep.c:1.78 Sun Mar 28 10:29:05 2021
+++ src/sys/arch/arm/arm32/vm_machdep.c Mon Jan 15 20:35:22 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: vm_machdep.c,v 1.78 2021/03/28 10:29:05 skrll Exp $ */
+/* $NetBSD: vm_machdep.c,v 1.79 2024/01/15 20:35:22 andvar Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@@ -44,7 +44,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.78 2021/03/28 10:29:05 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.79 2024/01/15 20:35:22 andvar Exp $");
#include "opt_armfpe.h"
#include "opt_cputypes.h"
@@ -55,6 +55,9 @@ __KERNEL_RCSID(0, "$NetBSD: vm_machdep.c
#include <sys/cpu.h>
#include <sys/exec.h>
#include <sys/proc.h>
+#ifdef STACKCHECKS
+#include <sys/syslog.h>
+#endif
#include <sys/systm.h>
#include <sys/vnode.h>