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
35 lines
787 B
C
35 lines
787 B
C
|
|
#ifndef _VMPROC_H
|
|
#define _VMPROC_H 1
|
|
|
|
#include <minix/bitmap.h>
|
|
#include <machine/archtypes.h>
|
|
|
|
#include "pt.h"
|
|
#include "vm.h"
|
|
#include "regionavl.h"
|
|
|
|
struct vmproc;
|
|
|
|
struct vmproc {
|
|
int vm_flags;
|
|
endpoint_t vm_endpoint;
|
|
pt_t vm_pt; /* page table data */
|
|
struct boot_image *vm_boot; /* if boot time process */
|
|
|
|
/* Regions in virtual address space. */
|
|
region_avl vm_regions_avl;
|
|
vir_bytes vm_region_top; /* highest vaddr last inserted */
|
|
bitchunk_t vm_call_mask[VM_CALL_MASK_SIZE];
|
|
int vm_slot; /* process table slot */
|
|
#if VMSTATS
|
|
int vm_bytecopies;
|
|
#endif
|
|
};
|
|
|
|
/* Bits for vm_flags */
|
|
#define VMF_INUSE 0x001 /* slot contains a process */
|
|
#define VMF_EXITING 0x002 /* PM is cleaning up this process */
|
|
#define VMF_WATCHEXIT 0x008 /* Store in queryexit table */
|
|
|
|
#endif
|