cvs commit: src/sys/coda coda_vfsops.c src/sys/fs/devfs
devfs_vfsops.c src/sys/fs/fdescfs fdesc_vfsops.c src/sys/fs/hpfs
hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs
ntfs_vfsops.c src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs ...
Poul-Henning Kamp
phk at FreeBSD.org
Fri Jul 30 15:08:53 PDT 2004
phk 2004-07-30 22:08:52 UTC
FreeBSD src repository
Modified files:
sys/coda coda_vfsops.c
sys/fs/devfs devfs_vfsops.c
sys/fs/fdescfs fdesc_vfsops.c
sys/fs/hpfs hpfs_vfsops.c
sys/fs/msdosfs msdosfs_vfsops.c
sys/fs/ntfs ntfs_vfsops.c
sys/fs/nullfs null_vfsops.c
sys/fs/nwfs nwfs_vfsops.c
sys/fs/portalfs portal_vfsops.c
sys/fs/pseudofs pseudofs.c pseudofs.h
sys/fs/smbfs smbfs_vfsops.c
sys/fs/udf udf_vfsops.c
sys/fs/umapfs umap_vfsops.c
sys/fs/unionfs union_vfsops.c
sys/gnu/ext2fs ext2_vfsops.c
sys/isofs/cd9660 cd9660_vfsops.c
sys/kern vfs_init.c vfs_mount.c
sys/nfs4client nfs4_vfsops.c
sys/nfsclient nfs_vfsops.c
sys/sys mount.h
sys/ufs/ffs ffs_extern.h ffs_vfsops.c
Log:
Put a version element in the VFS filesystem configuration structure
and refuse initializing filesystems with a wrong version. This will
aid maintenance activites on the 5-stable branch.
s/vfs_mount/vfs_omount/
s/vfs_nmount/vfs_mount/
Name our filesystems mount function consistently.
Eliminate the namiedata argument to both vfs_mount and vfs_omount.
It was originally there to save stack space. A few places abused
it to get hold of some credentials to pass around. Effectively
it is unused.
Reorganize the root filesystem selection code.
Revision Changes Path
1.51 +14 -13 src/sys/coda/coda_vfsops.c
1.33 +3 -6 src/sys/fs/devfs/devfs_vfsops.c
1.46 +3 -6 src/sys/fs/fdescfs/fdesc_vfsops.c
1.39 +12 -11 src/sys/fs/hpfs/hpfs_vfsops.c
1.125 +9 -9 src/sys/fs/msdosfs/msdosfs_vfsops.c
1.61 +9 -8 src/sys/fs/ntfs/ntfs_vfsops.c
1.63 +4 -6 src/sys/fs/nullfs/null_vfsops.c
1.34 +4 -4 src/sys/fs/nwfs/nwfs_vfsops.c
1.51 +3 -4 src/sys/fs/portalfs/portal_vfsops.c
1.22 +1 -2 src/sys/fs/pseudofs/pseudofs.c
1.28 +4 -5 src/sys/fs/pseudofs/pseudofs.h
1.26 +3 -4 src/sys/fs/smbfs/smbfs_vfsops.c
1.20 +4 -3 src/sys/fs/udf/udf_vfsops.c
1.58 +3 -3 src/sys/fs/umapfs/umap_vfsops.c
1.67 +4 -4 src/sys/fs/unionfs/union_vfsops.c
1.126 +5 -5 src/sys/gnu/ext2fs/ext2_vfsops.c
1.121 +8 -8 src/sys/isofs/cd9660/cd9660_vfsops.c
1.72 +7 -2 src/sys/kern/vfs_init.c
1.138 +53 -52 src/sys/kern/vfs_mount.c
1.11 +3 -4 src/sys/nfs4client/nfs4_vfsops.c
1.158 +3 -4 src/sys/nfsclient/nfs_vfsops.c
1.173 +19 -10 src/sys/sys/mount.h
1.57 +0 -1 src/sys/ufs/ffs/ffs_extern.h
1.240 +16 -22 src/sys/ufs/ffs/ffs_vfsops.c
More information about the cvs-src
mailing list