]> Zhao Yanbai Git Server - minix.git/commit
libfsdriver: support mmap on FSes with no device 92/2892/1
authorDavid van Moolenbroek <david@minix3.org>
Sat, 15 Nov 2014 10:14:00 +0000 (10:14 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Sat, 15 Nov 2014 11:19:52 +0000 (11:19 +0000)
commite321f6558257ab50a8b750451c96d1a3ca19e300
treea48f5fb590ebb1948750b27427b657ddd9166989
parent289b04677a1b234d09a045a727f5e614a6c8d716
libfsdriver: support mmap on FSes with no device

This patch adds (very limited) support for memory-mapping pages on
file systems that are mounted on the special "none" device and that
do not implement PEEK support by themselves.  This includes hgfs,
vbfs, and procfs.

The solution is implemented in libvtreefs, and consists of allocating
pages, filling them with content by calling the file system's READ
functionality, passing the pages to VM, and freeing them again.  A new
VM flag is used to indicate that these pages should be mapped in only
once, and thus not cached beyond their single use.  This prevents
stale data from getting mapped in without the involvement of the file
system, which would be problematic on file systems where file contents
may become outdated at any time.  No VM caching means no sharing and
poor performance, but mmap no longer fails on these file systems.

Compared to a libc-based approach, this patch retains the on-demand
nature of mmap.  Especially tail(1) is known to map in a large file
area only to use a small portion of it.

All file systems now need to be given permission for the SETCACHEPAGE
and CLEARCACHE calls to VM.

A very basic regression test is added to test74.

Change-Id: I17afc4cb97315b515cad1542521b98f293b6b559
13 files changed:
etc/system.conf
minix/include/minix/vm.h
minix/lib/libfsdriver/call.c
minix/lib/libminixfs/cache.c
minix/lib/libsys/vm_cache.c
minix/servers/vm/cache.c
minix/servers/vm/cache.h
minix/servers/vm/mem_cache.c
minix/servers/vm/mem_file.c
minix/servers/vm/proto.h
minix/tests/test72.c
minix/tests/test74.c
minix/tests/testvm.c