diff options
author | dyson <dyson@FreeBSD.org> | 1997-12-29 01:03:55 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-12-29 01:03:55 +0000 |
commit | 8ab3ac77d29a2c135e0f05f5563d3b5cc8ce1a18 (patch) | |
tree | 98ead89437e86f933ede8850016dcfb1679e58fa /sys/vm/vm_map.c | |
parent | cd67bb82fe37f70fed8e42c14c818de84029e3c0 (diff) | |
download | FreeBSD-src-8ab3ac77d29a2c135e0f05f5563d3b5cc8ce1a18.zip FreeBSD-src-8ab3ac77d29a2c135e0f05f5563d3b5cc8ce1a18.tar.gz |
Fix the decl of vfs_ioopt, allow LFS to compile again, fix a minor problem
with the object cache removal.
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r-- | sys/vm/vm_map.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index b20b433..11604ce 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.c,v 1.101 1997/12/25 20:55:15 dyson Exp $ + * $Id: vm_map.c,v 1.102 1997/12/29 00:24:43 dyson Exp $ */ /* @@ -93,7 +93,6 @@ #include <vm/vm_zone.h> static MALLOC_DEFINE(M_VMMAP, "VM map", "VM map structures"); -extern int vfs_ioopt; /* * Virtual memory maps provide for the mapping, protection, |