49eb1f4806
Primary purpose of change: to support the mmap implementation, VM must know both (a) about some block metadata for FS cache blocks, i.e. inode numbers and inode offsets where applicable; and (b) know about *all* cache blocks, i.e. also of the FS primary caches and not just the blocks that spill into the secondary one. This changes the interface and VM data structures. This change is only for the interface (libminixfs) and VM data structures; the filesystem code is unmodified, so although the secondary cache will be used as normal, blocks will not be annotated with inode information until the FS is modified to provide this information. Until it is modified, mmap of files will fail gracefully on such filesystems. This is indicated to VFS/VM by returning ENOSYS for REQ_PEEK. Change-Id: I1d2df6c485e6c5e89eb28d9055076cc02629594e
21 lines
773 B
C
21 lines
773 B
C
|
|
struct cached_page {
|
|
/* - The (dev, dev_offset) pair are unique;
|
|
* the (ino, ino_offset) pair is information and
|
|
* might be missing. duplicate do not make sense
|
|
* although it won't bother VM much.
|
|
* - dev must always be valid, i.e. not NO_DEV
|
|
* - ino may be unknown, i.e. VMC_NO_INODE
|
|
*/
|
|
dev_t dev; /* which dev is it on */
|
|
u64_t dev_offset; /* offset within dev */
|
|
|
|
ino_t ino; /* which ino is it about */
|
|
u64_t ino_offset; /* offset within ino */
|
|
struct phys_block *page; /* page ptr */
|
|
struct cached_page *older; /* older in lru chain */
|
|
struct cached_page *newer; /* newer in lru chain */
|
|
struct cached_page *hash_next_dev; /* next in hash chain (bydev) */
|
|
struct cached_page *hash_next_ino; /* next in hash chain (byino) */
|
|
};
|
|
|