Rename the loadable nullfs kernel module: null -> nullfs

This commit is contained in:
Sheldon Hearn 2000-07-28 11:54:09 +00:00
parent 1fb2276093
commit 1b2fbe6ff9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63962
6 changed files with 14 additions and 14 deletions

View File

@ -107,12 +107,12 @@ main(argc, argv)
args.target = target;
error = getvfsbyname("null", &vfc);
if (error && vfsisloadable("null")) {
if(vfsload("null"))
err(EX_OSERR, "vfsload(null)");
error = getvfsbyname("nullfs", &vfc);
if (error && vfsisloadable("nullfs")) {
if(vfsload("nullfs"))
err(EX_OSERR, "vfsload(nullfs)");
endvfsent();
error = getvfsbyname("null", &vfc);
error = getvfsbyname("nullfs", &vfc);
}
if (error)
errx(EX_OSERR, "null/loopback filesystem is not available");

View File

@ -107,12 +107,12 @@ main(argc, argv)
args.target = target;
error = getvfsbyname("null", &vfc);
if (error && vfsisloadable("null")) {
if(vfsload("null"))
err(EX_OSERR, "vfsload(null)");
error = getvfsbyname("nullfs", &vfc);
if (error && vfsisloadable("nullfs")) {
if(vfsload("nullfs"))
err(EX_OSERR, "vfsload(nullfs)");
endvfsent();
error = getvfsbyname("null", &vfc);
error = getvfsbyname("nullfs", &vfc);
}
if (error)
errx(EX_OSERR, "null/loopback filesystem is not available");

View File

@ -90,7 +90,7 @@ mfs_load="NO" # Memory filesystem
msdos_load="NO" # FAT-12/16/32
nfs_load="NO" # NFS
ntfs_load="NO" # NTFS
null_load="NO" # Null filesystem
nullfs_load="NO" # Null filesystem
portal_load="NO" # Portal filesystem
procfs_load="NO" # Process filesystem
umap_load="NO" # User-id map filesystem

View File

@ -446,4 +446,4 @@ static struct vfsops null_vfsops = {
nullfs_extattrctl,
};
VFS_SET(null_vfsops, null, VFCF_LOOPBACK);
VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);

View File

@ -446,4 +446,4 @@ static struct vfsops null_vfsops = {
nullfs_extattrctl,
};
VFS_SET(null_vfsops, null, VFCF_LOOPBACK);
VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);

View File

@ -1,7 +1,7 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../miscfs/nullfs
KMOD= null
KMOD= nullfs
SRCS= vnode_if.h \
null_subr.c null_vfsops.c null_vnops.c
NOMAN=