summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-12-16 19:51:34 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-12-16 19:51:34 +0000
commit0e4d74d0075c6d6b7185c15143629486ecab4281 (patch)
treec86b563c2884b6f54894a44d80bd33e2bcccf97d /sys
parent13ed8ba58f71d57c2903bc6e7aedf6b5c56b258f (diff)
only need lock.h here, not all of uvm_extern.h
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/softraid.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c
index dc2a910db30..6e524245974 100644
--- a/sys/dev/softraid.c
+++ b/sys/dev/softraid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid.c,v 1.345 2014/12/16 18:30:03 tedu Exp $ */
+/* $OpenBSD: softraid.c,v 1.346 2014/12/16 19:51:33 tedu Exp $ */
/*
* Copyright (c) 2007, 2008, 2009 Marco Peereboom <marco@peereboom.us>
* Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org>
@@ -33,6 +33,7 @@
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/vnode.h>
+#include <sys/lock.h>
#include <sys/mount.h>
#include <sys/sensors.h>
#include <sys/stat.h>
@@ -42,8 +43,6 @@
#include <sys/kthread.h>
#include <sys/dkio.h>
-#include <uvm/uvm_extern.h>
-
#include <crypto/cryptodev.h>
#include <scsi/scsi_all.h>