From 35437d86aa2e89b16dfeb84a5499976559847155 Mon Sep 17 00:00:00 2001 From: ru Date: Wed, 23 May 2001 09:42:29 +0000 Subject: - 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. --- sys/fs/procfs/procfs_ctl.c | 2 +- sys/fs/procfs/procfs_dbregs.c | 2 +- sys/fs/procfs/procfs_fpregs.c | 2 +- sys/fs/procfs/procfs_map.c | 2 +- sys/fs/procfs/procfs_mem.c | 2 +- sys/fs/procfs/procfs_note.c | 2 +- sys/fs/procfs/procfs_regs.c | 2 +- sys/fs/procfs/procfs_rlimit.c | 2 +- sys/fs/procfs/procfs_status.c | 2 +- sys/fs/procfs/procfs_subr.c | 2 +- sys/fs/procfs/procfs_type.c | 2 +- sys/fs/procfs/procfs_vfsops.c | 2 +- sys/fs/procfs/procfs_vnops.c | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) (limited to 'sys/fs/procfs') diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index 5818758..a507349 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -48,7 +48,7 @@ #include #include -#include +#include #include diff --git a/sys/fs/procfs/procfs_dbregs.c b/sys/fs/procfs/procfs_dbregs.c index d80e28c..cd64a34 100644 --- a/sys/fs/procfs/procfs_dbregs.c +++ b/sys/fs/procfs/procfs_dbregs.c @@ -52,7 +52,7 @@ #include -#include +#include #include diff --git a/sys/fs/procfs/procfs_fpregs.c b/sys/fs/procfs/procfs_fpregs.c index 7e2ff52..c71e444 100644 --- a/sys/fs/procfs/procfs_fpregs.c +++ b/sys/fs/procfs/procfs_fpregs.c @@ -49,7 +49,7 @@ #include -#include +#include #include diff --git a/sys/fs/procfs/procfs_map.c b/sys/fs/procfs/procfs_map.c index 5c21993..e974b04 100644 --- a/sys/fs/procfs/procfs_map.c +++ b/sys/fs/procfs/procfs_map.c @@ -46,7 +46,7 @@ #include #include -#include +#include #include #include diff --git a/sys/fs/procfs/procfs_mem.c b/sys/fs/procfs/procfs_mem.c index 1e28870..b8c60d6 100644 --- a/sys/fs/procfs/procfs_mem.c +++ b/sys/fs/procfs/procfs_mem.c @@ -54,7 +54,7 @@ #include #include -#include +#include #include #include diff --git a/sys/fs/procfs/procfs_note.c b/sys/fs/procfs/procfs_note.c index 273010b..c669654 100644 --- a/sys/fs/procfs/procfs_note.c +++ b/sys/fs/procfs/procfs_note.c @@ -41,7 +41,7 @@ #include #include -#include +#include int procfs_donote(curp, p, pfs, uio) diff --git a/sys/fs/procfs/procfs_regs.c b/sys/fs/procfs/procfs_regs.c index ba58517..c7eeb1c 100644 --- a/sys/fs/procfs/procfs_regs.c +++ b/sys/fs/procfs/procfs_regs.c @@ -52,7 +52,7 @@ #include #include -#include +#include int procfs_doregs(curp, p, pfs, uio) diff --git a/sys/fs/procfs/procfs_rlimit.c b/sys/fs/procfs/procfs_rlimit.c index 361f6f6..f74874d 100644 --- a/sys/fs/procfs/procfs_rlimit.c +++ b/sys/fs/procfs/procfs_rlimit.c @@ -52,7 +52,7 @@ #include #include #include -#include +#include int diff --git a/sys/fs/procfs/procfs_status.c b/sys/fs/procfs/procfs_status.c index b29b4a9..9620be5 100644 --- a/sys/fs/procfs/procfs_status.c +++ b/sys/fs/procfs/procfs_status.c @@ -56,7 +56,7 @@ #include #include -#include +#include #define DOCHECK() do { if (ps >= psbuf+sizeof(psbuf)) goto bailout; } while (0) int diff --git a/sys/fs/procfs/procfs_subr.c b/sys/fs/procfs/procfs_subr.c index 64adecb..36d366f 100644 --- a/sys/fs/procfs/procfs_subr.c +++ b/sys/fs/procfs/procfs_subr.c @@ -50,7 +50,7 @@ #include #include -#include +#include static struct pfsnode *pfshead; static int pfsvplock; diff --git a/sys/fs/procfs/procfs_type.c b/sys/fs/procfs/procfs_type.c index cb2a45f..3919c88 100644 --- a/sys/fs/procfs/procfs_type.c +++ b/sys/fs/procfs/procfs_type.c @@ -42,7 +42,7 @@ #include #include #include -#include +#include int procfs_dotype(curp, p, pfs, uio) diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index 91daf9d..c0d7add 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -49,7 +49,7 @@ #include #include #include -#include +#include static int procfs_mount __P((struct mount *mp, char *path, caddr_t data, struct nameidata *ndp, struct proc *p)); diff --git a/sys/fs/procfs/procfs_vnops.c b/sys/fs/procfs/procfs_vnops.c index dbdafc8..a054eb9 100644 --- a/sys/fs/procfs/procfs_vnops.c +++ b/sys/fs/procfs/procfs_vnops.c @@ -66,7 +66,7 @@ #include -#include +#include static int procfs_access __P((struct vop_access_args *)); static int procfs_badop __P((void)); -- cgit v1.1