diff options
author | 2013-11-04 21:02:57 +0000 | |
---|---|---|
committer | 2013-11-04 21:02:57 +0000 | |
commit | e7d4f7522d6eb5aaf5966c05a272cc9e9b6c14f5 (patch) | |
tree | 2c447d66f0758ff5891a11a2a5fb3234232f8dfd /sys/dev/softraid.c | |
parent | Rename beagle_machdep.c to omap_machdep.c (diff) | |
download | wireguard-openbsd-e7d4f7522d6eb5aaf5966c05a272cc9e9b6c14f5.tar.xz wireguard-openbsd-e7d4f7522d6eb5aaf5966c05a272cc9e9b6c14f5.zip |
substantial namespace cleanup. Might go a little bit too far, but we
can expose some of the kernel structures with split .h files if need be.
Discussed with various, including jsing.
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index 9641a64272f..f340467c52d 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.312 2013/11/01 17:36:19 krw Exp $ */ +/* $OpenBSD: softraid.c,v 1.313 2013/11/04 21:02:57 deraadt 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/queue.h> #include <sys/fcntl.h> #include <sys/disklabel.h> +#include <sys/vnode.h> #include <sys/mount.h> #include <sys/sensors.h> #include <sys/stat.h> |