Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 May 2001 02:42:29 -0700 (PDT)
From:      Ruslan Ermilov <ru@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/etc/mtree BSD.include.dist src/include Makefile src/sys/alpha/alpha machdep.c procfs_machdep.c src/sys/alpha/osf1 osf1_signal.c src/sys/conf files options src/sys/i386/conf NOTES src/sys/i386/i386 procfs_machdep.c src/sys/ia64/ia64 machdep.c ...
Message-ID:  <200105230942.f4N9gTc55824@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
ru          2001/05/23 02:42:29 PDT

  Modified files:
    etc/mtree            BSD.include.dist 
    include              Makefile 
    sys/alpha/alpha      machdep.c procfs_machdep.c 
    sys/alpha/osf1       osf1_signal.c 
    sys/conf             files options 
    sys/i386/conf        NOTES 
    sys/i386/i386        procfs_machdep.c 
    sys/ia64/ia64        machdep.c procfs_machdep.c 
    sys/isofs/cd9660     cd9660_vnops.c 
    sys/kern             Make.tags.inc Makefile sys_process.c 
                         vfs_syscalls.c 
    sys/nfs              nfs_vnops.c 
    sys/ufs/ufs          ufs_vnops.c 
    sbin/mount_null      Makefile mount_null.c 
    sbin/mount_portal    Makefile portald.h 
    sbin/mount_umap      Makefile mount_umap.c 
    sbin/mount_union     Makefile mount_union.c 
    sys/fs/fdescfs       fdesc_vfsops.c fdesc_vnops.c 
    sys/fs/fifofs        fifo_vnops.c 
    sys/fs/nullfs        null_subr.c null_vfsops.c null_vnops.c 
    sys/fs/portalfs      portal_vfsops.c portal_vnops.c 
    sys/fs/procfs        procfs_ctl.c procfs_dbregs.c 
                         procfs_fpregs.c procfs_map.c procfs_mem.c 
                         procfs_note.c procfs_regs.c 
                         procfs_rlimit.c procfs_status.c 
                         procfs_subr.c procfs_type.c 
                         procfs_vfsops.c procfs_vnops.c 
    sys/fs/umapfs        umap_subr.c umap_vfsops.c umap_vnops.c 
    sys/fs/unionfs       union_subr.c union_vfsops.c union_vnops.c 
    sys/modules          Makefile 
    sys/modules/fdescfs  Makefile 
    sys/modules/nullfs   Makefile 
    sys/modules/portalfs Makefile 
    sys/modules/procfs   Makefile 
    sys/modules/umapfs   Makefile 
    sys/modules/unionfs  Makefile 
    usr.sbin/pstat       Makefile pstat.c 
  Removed files:
    sys/miscfs/deadfs    dead_vnops.c 
    sys/miscfs/fdesc     fdesc.h fdesc_vfsops.c fdesc_vnops.c 
    sys/miscfs/fifofs    fifo.h fifo_vnops.c 
    sys/miscfs/nullfs    null.h null_subr.c null_vfsops.c 
                         null_vnops.c 
    sys/miscfs/portal    portal.h portal_vfsops.c portal_vnops.c 
    sys/miscfs/procfs    README procfs.h procfs_ctl.c 
                         procfs_dbregs.c procfs_fpregs.c 
                         procfs_map.c procfs_mem.c procfs_note.c 
                         procfs_regs.c procfs_rlimit.c 
                         procfs_status.c procfs_subr.c 
                         procfs_type.c procfs_vfsops.c 
                         procfs_vnops.c 
    sys/miscfs/specfs    spec_vnops.c 
    sys/miscfs/umapfs    umap.h umap_subr.c umap_vfsops.c 
                         umap_vnops.c 
    sys/miscfs/union     union.h union_subr.c union_vfsops.c 
                         union_vnops.c 
    sys/modules/fdesc    Makefile 
    sys/modules/portal   Makefile 
    sys/modules/union    Makefile 
  Log:
  - 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.
  
  Revision  Changes    Path
  1.42      +15 -1     src/etc/mtree/BSD.include.dist
  1.138     +5 -3      src/include/Makefile
  1.131     +2 -2      src/sys/alpha/alpha/machdep.c
  1.9       +2 -2      src/sys/alpha/alpha/procfs_machdep.c
  1.9       +2 -2      src/sys/alpha/osf1/osf1_signal.c
  1.518     +36 -36    src/sys/conf/files
  1.273     +4 -4      src/sys/conf/options
  1.915     +4 -4      src/sys/i386/conf/NOTES
  1.20      +2 -2      src/sys/i386/i386/procfs_machdep.c
  1.33      +2 -2      src/sys/ia64/ia64/machdep.c
  1.7       +2 -2      src/sys/ia64/ia64/procfs_machdep.c
  1.72      +2 -2      src/sys/isofs/cd9660/cd9660_vnops.c
  1.10      +20 -20    src/sys/kern/Make.tags.inc
  1.8       +4 -4      src/sys/kern/Makefile
  1.67      +2 -2      src/sys/kern/sys_process.c
  1.191     +1 -2      src/sys/kern/vfs_syscalls.c
  1.171     +2 -2      src/sys/nfs/nfs_vnops.c
  1.167     +2 -2      src/sys/ufs/ufs/ufs_vnops.c
  1.8       +2 -2      src/sbin/mount_null/Makefile
  1.15      +2 -2      src/sbin/mount_null/mount_null.c
  1.13      +2 -2      src/sbin/mount_portal/Makefile
  1.6       +2 -2      src/sbin/mount_portal/portald.h
  1.9       +2 -2      src/sbin/mount_umap/Makefile
  1.16      +2 -2      src/sbin/mount_umap/mount_umap.c
  1.9       +2 -2      src/sbin/mount_union/Makefile
  1.13      +2 -2      src/sbin/mount_union/mount_union.c
  1.28      +2 -2      src/sys/fs/fdescfs/fdesc_vfsops.c
  1.67      +2 -2      src/sys/fs/fdescfs/fdesc_vnops.c
  1.53      +2 -2      src/sys/fs/fifofs/fifo_vnops.c
  1.31      +2 -2      src/sys/fs/nullfs/null_subr.c
  1.48      +2 -2      src/sys/fs/nullfs/null_vfsops.c
  1.48      +2 -2      src/sys/fs/nullfs/null_vnops.c
  1.31      +2 -2      src/sys/fs/portalfs/portal_vfsops.c
  1.41      +2 -2      src/sys/fs/portalfs/portal_vnops.c
  1.29      +2 -2      src/sys/fs/procfs/procfs_ctl.c
  1.10      +2 -2      src/sys/fs/procfs/procfs_dbregs.c
  1.17      +2 -2      src/sys/fs/procfs/procfs_fpregs.c
  1.27      +2 -2      src/sys/fs/procfs/procfs_map.c
  1.50      +2 -2      src/sys/fs/procfs/procfs_mem.c
  1.7       +2 -2      src/sys/fs/procfs/procfs_note.c
  1.16      +2 -2      src/sys/fs/procfs/procfs_regs.c
  1.6       +2 -2      src/sys/fs/procfs/procfs_rlimit.c
  1.30      +2 -2      src/sys/fs/procfs/procfs_status.c
  1.34      +2 -2      src/sys/fs/procfs/procfs_subr.c
  1.7       +2 -2      src/sys/fs/procfs/procfs_type.c
  1.37      +2 -2      src/sys/fs/procfs/procfs_vfsops.c
  1.97      +2 -2      src/sys/fs/procfs/procfs_vnops.c
  1.25      +2 -2      src/sys/fs/umapfs/umap_subr.c
  1.38      +2 -2      src/sys/fs/umapfs/umap_vfsops.c
  1.33      +3 -3      src/sys/fs/umapfs/umap_vnops.c
  1.54      +2 -2      src/sys/fs/unionfs/union_subr.c
  1.45      +2 -2      src/sys/fs/unionfs/union_vfsops.c
  1.85      +2 -2      src/sys/fs/unionfs/union_vnops.c
  1.179     +4 -4      src/sys/modules/Makefile
  1.11      +3 -3      src/sys/modules/fdescfs/Makefile
  1.15      +2 -2      src/sys/modules/nullfs/Makefile
  1.11      +3 -3      src/sys/modules/portalfs/Makefile
  1.23      +2 -2      src/sys/modules/procfs/Makefile
  1.12      +2 -2      src/sys/modules/umapfs/Makefile
  1.11      +3 -3      src/sys/modules/unionfs/Makefile
  1.8       +1 -2      src/usr.sbin/pstat/Makefile
  1.56      +2 -2      src/usr.sbin/pstat/pstat.c


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200105230942.f4N9gTc55824>