Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Jan 2015 11:04:42 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r277966 - stable/10/sys/fs/tmpfs
Message-ID:  <201501311104.t0VB4gtr094281@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sat Jan 31 11:04:41 2015
New Revision: 277966
URL: https://svnweb.freebsd.org/changeset/base/277966

Log:
  MFC r277827:
  tmpfs does not use UVM on FreeBSD.

Modified:
  stable/10/sys/fs/tmpfs/tmpfs_vfsops.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/fs/tmpfs/tmpfs_vfsops.c
==============================================================================
--- stable/10/sys/fs/tmpfs/tmpfs_vfsops.c	Sat Jan 31 11:02:20 2015	(r277965)
+++ stable/10/sys/fs/tmpfs/tmpfs_vfsops.c	Sat Jan 31 11:04:41 2015	(r277966)
@@ -33,10 +33,10 @@
 /*
  * Efficient memory file system.
  *
- * tmpfs is a file system that uses NetBSD's virtual memory sub-system
- * (the well-known UVM) to store file data and metadata in an efficient
- * way.  This means that it does not follow the structure of an on-disk
- * file system because it simply does not need to.  Instead, it uses
+ * tmpfs is a file system that uses FreeBSD's virtual memory
+ * sub-system to store file data and metadata in an efficient way.
+ * This means that it does not follow the structure of an on-disk file
+ * system because it simply does not need to.  Instead, it uses
  * memory-specific data structures and algorithms to automatically
  * allocate and release resources.
  */



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