minix/minix
David van Moolenbroek 89c9de7d09 Add libfsdriver: a library to drive file systems
This library provides new abstractions for the upper (VFS) side of
file system services, and should be used for all file system service
implementations from now on.  It provides the following functionality:

  - a function call table abstraction, hiding the details of the
    VFS-FS protocol with simple parameters;
  - a (currently limited) number of per-function steps required for
    all file system implementations, such as copying in and out path
    names and result buffers;
  - a default implementation for multicomponent path lookups, such
    that the file system merely has to implement resolution of single
    components at a time;
  - an abstraction for copying data from and to the file system, which
    allows transparent intraprocess copying as required for the lookup
    implementation;
  - a set of functions to simplify getdents implementations.

The message loop provided by the library is currently for use by
single-threaded file system implementations only.  Multithreaded file
system services may use the more low-level message processing
functionality.

Protocol-level optimizations such as including names in protocol
messages may be hidden entirely in this library.  In addition, in the
future, the lookup implementation may be replaced by a single-
component lookup VFS/FS protocol request as part of a VFS name cache
implementation; this, too, can be hidden entirely in this library.

Change-Id: Ib34f0d0e021dfa3426ce8826efcf3eaa94d3ef3e
2014-09-18 12:46:23 +00:00
..
benchmarks New sources layout 2014-07-31 16:00:30 +02:00
bin New sources layout 2014-07-31 16:00:30 +02:00
commands restore pkgin_cd 2014-09-13 17:05:52 +02:00
drivers restore single user mode 2014-09-12 23:16:13 +02:00
fs Temporarily disable the is9600 FS server 2014-09-12 13:39:49 +02:00
include Add libfsdriver: a library to drive file systems 2014-09-18 12:46:23 +00:00
kernel Kernel: update copyright year 2014-09-10 13:01:45 +00:00
lib Add libfsdriver: a library to drive file systems 2014-09-18 12:46:23 +00:00
llvm minix/llvm/passes/Makefile.inc: Fix 2014-08-29 12:56:57 -04:00
man Porting uuencode/uudecode from NetBSD 2014-09-08 19:51:28 +02:00
net merge libminlib with libc 2014-08-28 18:49:19 +02:00
sbin New sources layout 2014-07-31 16:00:30 +02:00
servers VFS: provide correct root directory for lookups 2014-09-18 12:46:23 +00:00
share New sources layout 2014-07-31 16:00:30 +02:00
tests blocktest: update test.sh for new shell 2014-09-09 10:04:09 -04:00
usr.bin uptime(1): also report uptime 2014-08-28 12:06:50 +00:00
usr.sbin merge libminlib with libc 2014-08-28 18:49:19 +02:00
Makefile INIT died problem / build system robustness 2014-08-28 08:52:50 +02:00
Makefile.inc New sources layout 2014-07-31 16:00:30 +02:00