diff options
author | delphij <delphij@FreeBSD.org> | 2007-10-04 17:08:46 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2007-10-04 17:08:46 +0000 |
commit | 679cdcf0e4c6184249b45f4a067bc03c20941e53 (patch) | |
tree | c6a425f62bdab6adc54b7697b66f0a5f1275a3f0 /sys/fs | |
parent | 7dc3b250aaa5e54527c6bb8f1feb116eca8f7fb2 (diff) | |
download | FreeBSD-src-679cdcf0e4c6184249b45f4a067bc03c20941e53.zip FreeBSD-src-679cdcf0e4c6184249b45f4a067bc03c20941e53.tar.gz |
Additional work is still needed before we can claim that tmpfs
is stable enough for production usage. Warn user upon mount.
Approved by: re (tmpfs blanket)
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/tmpfs/tmpfs_vfsops.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index a2ebf09..73eca06 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -215,6 +215,9 @@ tmpfs_mount(struct mount *mp, struct thread *td) return EOPNOTSUPP; } + printf("WARNING: TMPFS is considered to be a highly experimental " + "feature in FreeBSD.\n"); + vn_lock(mp->mnt_vnodecovered, LK_SHARED | LK_RETRY, td); error = VOP_GETATTR(mp->mnt_vnodecovered, &va, mp->mnt_cred, td); VOP_UNLOCK(mp->mnt_vnodecovered, 0, td); |