DragonFly BSD
DragonFly commits List (threaded) for 2010-02
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

git: kernel - TMPFS - Initial port of NetBSD's tmpfs


From: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 13 Feb 2010 00:01:55 -0800 (PST)

commit 7a2de9a42eb7af2d2c40f327e088e6c88489241a
Author: Matthew Dillon <dillon@apollo.backplane.com>
Date:   Fri Feb 12 13:46:28 2010 -0800

    kernel - TMPFS - Initial port of NetBSD's tmpfs
    
    * This is the initial pre-stabilization port of NetBSD's tmpfs,
      by Naoya Sugioka.
    
    Submitted-by: Naoya Sugioka <naoya.sugioka@gmail.com>

Summary of changes:
 sbin/Makefile                  |    1 +
 sbin/mount/mount.8             |    1 +
 sbin/mount_tmpfs/Makefile      |   12 +
 sbin/mount_tmpfs/mount_tmpfs.8 |  143 ++++
 sbin/mount_tmpfs/mount_tmpfs.c |  263 +++++++
 sbin/mount_tmpfs/mount_tmpfs.h |   37 +
 share/man/man5/Makefile        |    1 +
 share/man/man5/tmpfs.5         |  120 +++
 sys/conf/files                 |    6 +
 sys/conf/options               |    2 +
 sys/config/GENERIC             |    1 +
 sys/config/LINT                |    1 +
 sys/config/VKERNEL             |    1 +
 sys/config/X86_64_GENERIC      |    1 +
 sys/kern/Make.tags.inc         |    4 +-
 sys/kern/Makefile              |    2 +-
 sys/kern/Makefile.misc         |    2 +-
 sys/sys/mount.h                |    1 +
 sys/sys/vfscache.h             |    2 +-
 sys/vfs/Makefile               |    2 +-
 sys/vfs/tmpfs/Makefile         |    7 +
 sys/vfs/tmpfs/tmpfs.h          |  597 +++++++++++++++
 sys/vfs/tmpfs/tmpfs_args.h     |   54 ++
 sys/vfs/tmpfs/tmpfs_fifoops.c  |   99 +++
 sys/vfs/tmpfs/tmpfs_fifoops.h  |   53 ++
 sys/vfs/tmpfs/tmpfs_subr.c     | 1414 ++++++++++++++++++++++++++++++++++++
 sys/vfs/tmpfs/tmpfs_vfsops.c   |  461 ++++++++++++
 sys/vfs/tmpfs/tmpfs_vnops.c    | 1564 ++++++++++++++++++++++++++++++++++++++++
 sys/vfs/tmpfs/tmpfs_vnops.h    |   58 ++
 29 files changed, 4905 insertions(+), 5 deletions(-)
 create mode 100644 sbin/mount_tmpfs/Makefile
 create mode 100644 sbin/mount_tmpfs/mount_tmpfs.8
 create mode 100644 sbin/mount_tmpfs/mount_tmpfs.c
 create mode 100644 sbin/mount_tmpfs/mount_tmpfs.h
 create mode 100644 share/man/man5/tmpfs.5
 create mode 100644 sys/vfs/tmpfs/Makefile
 create mode 100644 sys/vfs/tmpfs/tmpfs.h
 create mode 100644 sys/vfs/tmpfs/tmpfs_args.h
 create mode 100644 sys/vfs/tmpfs/tmpfs_fifoops.c
 create mode 100644 sys/vfs/tmpfs/tmpfs_fifoops.h
 create mode 100644 sys/vfs/tmpfs/tmpfs_subr.c
 create mode 100644 sys/vfs/tmpfs/tmpfs_vfsops.c
 create mode 100644 sys/vfs/tmpfs/tmpfs_vnops.c
 create mode 100644 sys/vfs/tmpfs/tmpfs_vnops.h

http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/7a2de9a42eb7af2d2c40f327e088e6c88489241a


-- 
DragonFly BSD source repository



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]