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)
This commit is contained in:
Xin LI 2007-10-04 17:08:46 +00:00
parent aafd6a87a6
commit 386c969205
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=172441

View file

@ -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);