Module Name: src Committed By: riastradh Date: Tue Sep 13 09:40:18 UTC 2022
Modified Files: src/sys/arch/x86/include: pmap_private.h Log Message: x86/pmap.h: Need machine/cpufunc.h for invlpg. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/x86/include/pmap_private.h 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/x86/include/pmap_private.h diff -u src/sys/arch/x86/include/pmap_private.h:1.2 src/sys/arch/x86/include/pmap_private.h:1.3 --- src/sys/arch/x86/include/pmap_private.h:1.2 Sat Aug 20 23:49:31 2022 +++ src/sys/arch/x86/include/pmap_private.h Tue Sep 13 09:40:17 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap_private.h,v 1.2 2022/08/20 23:49:31 riastradh Exp $ */ +/* $NetBSD: pmap_private.h,v 1.3 2022/09/13 09:40:17 riastradh Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -80,6 +80,7 @@ #include <sys/queue.h> #include <sys/rwlock.h> +#include <machine/cpufunc.h> #include <machine/pte.h> #include <machine/vmparam.h>