bd3cde4571
Add primary cache management feature to libminixfs as mfs and ext2 currently do separately, remove cache code from mfs and ext2, and make them use the libminixfs interface. This makes all fields of the buf struct private to libminixfs and FS clients aren't supposed to access them at all. Only the opaque 'void *data' field (the FS block contents, used to be called bp) is to be accessed by the FS client. The main purpose is to implement the interface to the 2ndary vm cache just once, get rid of some code duplication, and add a little abstraction to reduce the code inertia of the whole caching business. Some minor sanity checking and prohibition done by mfs in this code as removed from the generic primary cache code as a result: - checking all inodes are not in use when allocating/resizing the cache - checking readonly filesystems aren't written to - checking the superblock isn't written to on mounted filesystems The minixfslib code relies on fs_blockstats() in the client filesystem to return some FS usage information. |
||
---|---|---|
.. | ||
buf.h | ||
cache.c | ||
clean.h | ||
const.h | ||
fs.h | ||
glo.h | ||
inode.c | ||
inode.h | ||
link.c | ||
main.c | ||
Makefile | ||
mfsdir.h | ||
misc.c | ||
mount.c | ||
open.c | ||
path.c | ||
pipe.c | ||
protect.c | ||
proto.h | ||
read.c | ||
stadir.c | ||
stats.c | ||
super.c | ||
super.h | ||
table.c | ||
time.c | ||
type.h | ||
utility.c | ||
write.c |