]> Zhao Yanbai Git Server - minix.git/commit
add -lminixfs with fs support routines
authorBen Gras <ben@minix3.org>
Thu, 8 Sep 2011 16:49:54 +0000 (16:49 +0000)
committerBen Gras <ben@minix3.org>
Thu, 8 Sep 2011 16:52:13 +0000 (16:52 +0000)
commit4857d5d554cc88f82f6865da133ee3da16b5b5fb
tree758929d4f3ea57f5dfae001303095452ccab92e0
parentce1a2793f99dbd6255ee43dd7f37935550dcac12
add -lminixfs with fs support routines

. move cache size heuristic from mfs there
  so mfs and ext2 can share it
. add vfs credentials retrieving function, with
  backwards compatability from previous struct
  format, to be used by both ext2 and mfs
. fix for ext2 - STATICINIT was fed no.
  of bytes instead of no. of elements, overallocating
  memory by a megabyte or two for the superblock
19 files changed:
common/include/Makefile.inc
common/include/minix/libminixfs.h [new file with mode: 0644]
common/include/minix/vfsif.h
include/limits.h
lib/Makefile
lib/libminixfs/Makefile [new file with mode: 0644]
lib/libminixfs/cache.c [new file with mode: 0644]
lib/libminixfs/fetch_credentials.c [new file with mode: 0644]
lib/libminixfs/minixfs.h [new file with mode: 0644]
servers/ext2/Makefile
servers/ext2/cache.c
servers/ext2/main.c
servers/ext2/mount.c
servers/ext2/path.c
servers/ext2/proto.h
servers/ext2/super.c
servers/mfs/Makefile
servers/mfs/cache.c
servers/mfs/path.c