diff options
author | 2010-04-20 23:12:01 +0000 | |
---|---|---|
committer | 2010-04-20 23:12:01 +0000 | |
commit | 2fb9ae6dfac11346fe0718efb57361609ef9af24 (patch) | |
tree | d2c973ce14384e6f745bd5164e776f14c96a0993 | |
parent | The openssl command line tool treats the non-null terminated buffer (diff) | |
download | wireguard-openbsd-2fb9ae6dfac11346fe0718efb57361609ef9af24.tar.xz wireguard-openbsd-2fb9ae6dfac11346fe0718efb57361609ef9af24.zip |
fix amd64 kernel compile after proc.h was removed from uvm_map.h
OK tedu@
-rw-r--r-- | sys/arch/amd64/amd64/autoconf.c | 3 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/sg_dma.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/autoconf.c b/sys/arch/amd64/amd64/autoconf.c index dc8dbce7c25..eda067000aa 100644 --- a/sys/arch/amd64/amd64/autoconf.c +++ b/sys/arch/amd64/amd64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.30 2009/05/31 03:20:10 matthieu Exp $ */ +/* $OpenBSD: autoconf.c,v 1.31 2010/04/20 23:12:01 phessler Exp $ */ /* $NetBSD: autoconf.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */ /*- @@ -58,6 +58,7 @@ #include <sys/reboot.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/if_types.h> diff --git a/sys/arch/amd64/amd64/sg_dma.c b/sys/arch/amd64/amd64/sg_dma.c index c54f078fc4d..c66e27dc2ae 100644 --- a/sys/arch/amd64/amd64/sg_dma.c +++ b/sys/arch/amd64/amd64/sg_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sg_dma.c,v 1.8 2010/04/08 00:55:25 oga Exp $ */ +/* $OpenBSD: sg_dma.c,v 1.9 2010/04/20 23:12:01 phessler Exp $ */ /* * Copyright (c) 2009 Owain G. Ainsworth <oga@openbsd.org> * @@ -54,6 +54,7 @@ #include <sys/device.h> #include <sys/mbuf.h> #include <sys/mutex.h> +#include <sys/proc.h> #include <uvm/uvm_extern.h> |