diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-27 03:36:39 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-27 03:36:39 +0000 |
commit | 8f6f40f4ce0dba740c2340b1f113b50fc35e72d9 (patch) | |
tree | b20d2d7d273432241ea2b2376e666a86eb083c73 | |
parent | e6ee5d0f7b18d93a7e4a97c9181bf955cd9a2117 (diff) |
Always #include <sys/mutex.h>: need struct mutex for struct vm_page_md
problem noted by landry@
ok dlg@
-rw-r--r-- | sys/arch/hppa/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pmap.h b/sys/arch/hppa/include/pmap.h index d28c1004393..dd9bc6475d8 100644 --- a/sys/arch/hppa/include/pmap.h +++ b/sys/arch/hppa/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.50 2015/07/14 06:50:04 kettenis Exp $ */ +/* $OpenBSD: pmap.h,v 1.51 2015/07/27 03:36:38 guenther Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -30,9 +30,9 @@ #define _MACHINE_PMAP_H_ #include <uvm/uvm_object.h> +#include <sys/mutex.h> #ifdef _KERNEL -#include <sys/mutex.h> #include <machine/pte.h> struct pmap { |