diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-12-16 18:30:05 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-12-16 18:30:05 +0000 |
commit | 1b60626aca1eb9231d53975be1cfc6005fd4a831 (patch) | |
tree | 82c7fe2e6f7f08f04db79b8e31cd69ba05b59f12 /sys/isofs/udf | |
parent | efd9ad2cb3ac2a3838d00a3017fadef949848d41 (diff) |
primary change: move uvm_vnode out of vnode, keeping only a pointer.
objective: vnode.h doesn't include uvm_extern.h anymore.
followup changes: include uvm_extern.h or lock.h where necessary.
ok and help from deraadt
Diffstat (limited to 'sys/isofs/udf')
-rw-r--r-- | sys/isofs/udf/udf_subr.c | 3 | ||||
-rw-r--r-- | sys/isofs/udf/udf_vfsops.c | 3 | ||||
-rw-r--r-- | sys/isofs/udf/udf_vnops.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/isofs/udf/udf_subr.c b/sys/isofs/udf/udf_subr.c index 9771fe38063..74971612fba 100644 --- a/sys/isofs/udf/udf_subr.c +++ b/sys/isofs/udf/udf_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_subr.c,v 1.24 2014/11/18 10:42:15 dlg Exp $ */ +/* $OpenBSD: udf_subr.c,v 1.25 2014/12/16 18:30:03 tedu Exp $ */ /* * Copyright (c) 2006, Miodrag Vallat @@ -35,6 +35,7 @@ #include <sys/stat.h> #include <sys/mount.h> #include <sys/vnode.h> +#include <sys/lock.h> #include <sys/dirent.h> #include <sys/disklabel.h> diff --git a/sys/isofs/udf/udf_vfsops.c b/sys/isofs/udf/udf_vfsops.c index 58cda539e2f..91c94685fe5 100644 --- a/sys/isofs/udf/udf_vfsops.c +++ b/sys/isofs/udf/udf_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_vfsops.c,v 1.43 2014/11/18 10:42:15 dlg Exp $ */ +/* $OpenBSD: udf_vfsops.c,v 1.44 2014/12/16 18:30:03 tedu Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -64,6 +64,7 @@ #include <sys/lock.h> #include <sys/queue.h> #include <sys/vnode.h> +#include <sys/lock.h> #include <sys/endian.h> #include <sys/specdev.h> diff --git a/sys/isofs/udf/udf_vnops.c b/sys/isofs/udf/udf_vnops.c index 4c318ce27fa..260f925c35e 100644 --- a/sys/isofs/udf/udf_vnops.c +++ b/sys/isofs/udf/udf_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_vnops.c,v 1.57 2014/11/18 10:42:15 dlg Exp $ */ +/* $OpenBSD: udf_vnops.c,v 1.58 2014/12/16 18:30:03 tedu Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -44,6 +44,7 @@ #include <sys/lock.h> #include <sys/mount.h> #include <sys/vnode.h> +#include <sys/lock.h> #include <sys/dirent.h> #include <sys/queue.h> #include <sys/endian.h> |