diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-12-29 05:29:29 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-12-29 05:29:29 +0000 |
commit | 7119be7e42f62212f3d28f26636426f3e1a73a7f (patch) | |
tree | 27c26dbbd593cd8651c0390ca40a3854ae2b138b /sys/kern/spec_vnops.c | |
parent | 39cfcdecf526a0b704de54a406729160c420285c (diff) |
Explicitely include <uvm/uvm_extern.h> in order to build on variable page size
architectures.
Diffstat (limited to 'sys/kern/spec_vnops.c')
-rw-r--r-- | sys/kern/spec_vnops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/spec_vnops.c b/sys/kern/spec_vnops.c index 2b7702adbdc..0b9106dd7fc 100644 --- a/sys/kern/spec_vnops.c +++ b/sys/kern/spec_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spec_vnops.c,v 1.81 2014/12/16 18:30:04 tedu Exp $ */ +/* $OpenBSD: spec_vnops.c,v 1.82 2014/12/29 05:29:27 miod Exp $ */ /* $NetBSD: spec_vnops.c,v 1.29 1996/04/22 01:42:38 christos Exp $ */ /* @@ -54,6 +54,8 @@ #include <sys/specdev.h> #include <sys/unistd.h> +#include <uvm/uvm_extern.h> + #define v_lastr v_specinfo->si_lastr int spec_open_clone(struct vop_open_args *); |