diff options
author | kib <kib@FreeBSD.org> | 2015-01-28 10:25:35 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2015-01-28 10:25:35 +0000 |
commit | 53810519b4c0da8a9f8bcdafa10465c8d423a70c (patch) | |
tree | e2088b8da96dea853e3e129731bd0da42226abb8 /sys/fs/tmpfs | |
parent | 262c956ed53b009a9bc6220eba21bc0bf6c968d1 (diff) | |
download | FreeBSD-src-53810519b4c0da8a9f8bcdafa10465c8d423a70c.zip FreeBSD-src-53810519b4c0da8a9f8bcdafa10465c8d423a70c.tar.gz |
tmpfs does not use UVM on FreeBSD.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
Diffstat (limited to 'sys/fs/tmpfs')
-rw-r--r-- | sys/fs/tmpfs/tmpfs_vfsops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index f389f1c..fbd7a63 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -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. */ |