diff options
author | bde <bde@FreeBSD.org> | 1997-11-18 10:02:40 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-11-18 10:02:40 +0000 |
commit | a9d75411eeb1b15c3230c85d97fb5d2b4d0e3d4e (patch) | |
tree | b47b010e579d0657db3b85fc61a0532c9af8f797 | |
parent | 50390b0fa21f997e7926592fc9dd0a348aaa11e1 (diff) | |
download | FreeBSD-src-a9d75411eeb1b15c3230c85d97fb5d2b4d0e3d4e.zip FreeBSD-src-a9d75411eeb1b15c3230c85d97fb5d2b4d0e3d4e.tar.gz |
Get locking stuff by #including <sys/lock.h> instead of <sys/vnode.h>.
-rw-r--r-- | sys/kern/vfs_aio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index 6625dab..2d317e2 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -13,7 +13,7 @@ * bad that happens because of using this software isn't the responsibility * of the author. This software is distributed AS-IS. * - * $Id: vfs_aio.c,v 1.9 1997/11/06 19:29:27 phk Exp $ + * $Id: vfs_aio.c,v 1.10 1997/11/07 08:53:03 phk Exp $ */ /* @@ -36,8 +36,8 @@ #include <sys/kernel.h> #include <sys/fcntl.h> #include <sys/file.h> +#include <sys/lock.h> #include <sys/unistd.h> -#include <sys/vnode.h> #include <sys/proc.h> #include <sys/uio.h> #include <sys/malloc.h> |