diff options
author | julian <julian@FreeBSD.org> | 1999-03-14 09:20:01 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1999-03-14 09:20:01 +0000 |
commit | 0c3f3973d253c1aedd05a44d33615546f4ea3c9d (patch) | |
tree | 98d1b3e17dccced065927853ce8eff90fe432af1 /sys/modules | |
parent | 105e87d9a2deffdb189a0b80eacc001d79ed0fad (diff) | |
download | FreeBSD-src-0c3f3973d253c1aedd05a44d33615546f4ea3c9d.zip FreeBSD-src-0c3f3973d253c1aedd05a44d33615546f4ea3c9d.tar.gz |
Submitted by: Matt Dillon <dillon@freebsd.org>
The old VN device broke in -4.x when the definition of B_PAGING
changed. This patch fixes this plus implements additional capabilities.
The new VN device can be backed by a file ( as per normal ), or it can
be directly backed by swap.
Due to dependencies in VM include files (on opt_xxx options) the new
vn device cannot be a module yet. This will be fixed in a later commit.
This commit delimitted by tags {PRE,POST}_MATT_VNDEV
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 59d56bb..298a7db 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,11 +1,11 @@ -# $Id: Makefile,v 1.50 1999/02/03 04:18:25 semenu Exp $ +# $Id: Makefile,v 1.51 1999/02/22 11:44:35 newton Exp $ -# XXX present but broken: ip_mroute_mod +# XXX present but broken: ip_mroute_mod vn # XXX not yet completed porting: acd # XXX builds but not updated: atapi SUBDIR= ccd cd9660 coda fdesc if_disc if_ppp if_sl if_tun ipfw kernfs \ - mfs msdos nfs nullfs portal procfs umapfs union vinum vn ntfs + mfs msdos nfs nullfs portal procfs umapfs union vinum ntfs # XXX some of these can move to the general case when de-i386'ed .if ${MACHINE_ARCH} == "i386" |