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/kern/tty_tty.c | |
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/kern/tty_tty.c')
-rw-r--r-- | sys/kern/tty_tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/tty_tty.c b/sys/kern/tty_tty.c index 75e3db2b807..ec3b20d5f78 100644 --- a/sys/kern/tty_tty.c +++ b/sys/kern/tty_tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty_tty.c,v 1.12 2011/10/06 09:14:35 mikeb Exp $ */ +/* $OpenBSD: tty_tty.c,v 1.13 2014/12/16 18:30:04 tedu Exp $ */ /* $NetBSD: tty_tty.c,v 1.13 1996/03/30 22:24:46 christos Exp $ */ /*- @@ -41,6 +41,7 @@ #include <sys/proc.h> #include <sys/tty.h> #include <sys/vnode.h> +#include <sys/lock.h> #include <sys/file.h> #include <sys/conf.h> |