Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Nov 2011 16:21:50 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r227310 - head/sys/fs/tmpfs
Message-ID:  <201111071621.pA7GLob4087040@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Mon Nov  7 16:21:50 2011
New Revision: 227310
URL: http://svn.freebsd.org/changeset/base/227310

Log:
  Don astbestos garment and remove the warning about TMPFS being experimental
  -- highly experimental even. So far the closest to a bug in TMPFS that people
  have gotten to relates to how ZFS can take away from the memory that TMPFS
  needs. One can argue that such is not a bug in TMPFS. Irrespective, even if
  there is a bug here and there in TMPFS, it's not in our own advantage to
  scare people away from using TMPFS. I for one have been using it, even with
  ZFS, very successfully.

Modified:
  head/sys/fs/tmpfs/tmpfs_vfsops.c

Modified: head/sys/fs/tmpfs/tmpfs_vfsops.c
==============================================================================
--- head/sys/fs/tmpfs/tmpfs_vfsops.c	Mon Nov  7 15:43:11 2011	(r227309)
+++ head/sys/fs/tmpfs/tmpfs_vfsops.c	Mon Nov  7 16:21:50 2011	(r227310)
@@ -156,9 +156,6 @@ tmpfs_mount(struct mount *mp)
 		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);
 	error = VOP_GETATTR(mp->mnt_vnodecovered, &va, mp->mnt_cred);
 	VOP_UNLOCK(mp->mnt_vnodecovered, 0);



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