diff options
author | ru <ru@FreeBSD.org> | 2001-05-23 09:42:29 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-23 09:42:29 +0000 |
commit | 35437d86aa2e89b16dfeb84a5499976559847155 (patch) | |
tree | 2bade94e6086e67f8de015d8c16fd2c15e7f78c3 /sys/fs/portalfs | |
parent | 627a25efaa565e765c3f4d9223bfeef7134724ef (diff) | |
download | FreeBSD-src-35437d86aa2e89b16dfeb84a5499976559847155.zip FreeBSD-src-35437d86aa2e89b16dfeb84a5499976559847155.tar.gz |
- FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION file
systems were repo-copied from sys/miscfs to sys/fs.
- Renamed the following file systems and their modules:
fdesc -> fdescfs, portal -> portalfs, union -> unionfs.
- Renamed corresponding kernel options:
FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS.
- Install header files for the above file systems.
- Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland
Makefiles.
Diffstat (limited to 'sys/fs/portalfs')
-rw-r--r-- | sys/fs/portalfs/portal_vfsops.c | 2 | ||||
-rw-r--r-- | sys/fs/portalfs/portal_vnops.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/portalfs/portal_vfsops.c b/sys/fs/portalfs/portal_vfsops.c index 423cd38..7178599 100644 --- a/sys/fs/portalfs/portal_vfsops.c +++ b/sys/fs/portalfs/portal_vfsops.c @@ -57,7 +57,7 @@ #include <sys/socketvar.h> #include <sys/vnode.h> -#include <miscfs/portal/portal.h> +#include <fs/portalfs/portal.h> static MALLOC_DEFINE(M_PORTALFSMNT, "PORTAL mount", "PORTAL mount structure"); diff --git a/sys/fs/portalfs/portal_vnops.c b/sys/fs/portalfs/portal_vnops.c index b53c4ca..726873e 100644 --- a/sys/fs/portalfs/portal_vnops.c +++ b/sys/fs/portalfs/portal_vnops.c @@ -61,7 +61,7 @@ #include <sys/socketvar.h> #include <sys/un.h> #include <sys/unpcb.h> -#include <miscfs/portal/portal.h> +#include <fs/portalfs/portal.h> static int portal_fileid = PORTAL_ROOTFILEID+1; |