kernel - TMPFS - Initial port of NetBSD's tmpfs
authorMatthew Dillon <dillon@apollo.backplane.com>
Fri, 12 Feb 2010 21:46:28 +0000 (13:46 -0800)
committerMatthew Dillon <dillon@apollo.backplane.com>
Fri, 12 Feb 2010 21:46:28 +0000 (13:46 -0800)
commit7a2de9a42eb7af2d2c40f327e088e6c88489241a
tree249eeec7fc9ce17638a27c3666941dc15c5124e8
parent2ef98e2c5150603cd963462815f13d4438e3c753
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>
29 files changed:
sbin/Makefile
sbin/mount/mount.8
sbin/mount_tmpfs/Makefile [new file with mode: 0644]
sbin/mount_tmpfs/mount_tmpfs.8 [new file with mode: 0644]
sbin/mount_tmpfs/mount_tmpfs.c [new file with mode: 0644]
sbin/mount_tmpfs/mount_tmpfs.h [new file with mode: 0644]
share/man/man5/Makefile
share/man/man5/tmpfs.5 [new file with mode: 0644]
sys/conf/files
sys/conf/options
sys/config/GENERIC
sys/config/LINT
sys/config/VKERNEL
sys/config/X86_64_GENERIC
sys/kern/Make.tags.inc
sys/kern/Makefile
sys/kern/Makefile.misc
sys/sys/mount.h
sys/sys/vfscache.h
sys/vfs/Makefile
sys/vfs/tmpfs/Makefile [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs.h [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_args.h [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_fifoops.c [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_fifoops.h [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_subr.c [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_vfsops.c [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_vnops.c [new file with mode: 0644]
sys/vfs/tmpfs/tmpfs_vnops.h [new file with mode: 0644]