45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/*
|
|||
* Copyright 2004, Axel Dörfler, [email protected].
|
|||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*/
|
||
#ifndef _KERNEL_FILE_CACHE_H
|
|||
|
|
#define _KERNEL_FILE_CACHE_H
|
||
|
|
|
||
|
|
|
||
#include <vfs.h>
|
|||
#include <vm_types.h>
|
|||
#include <module.h>
|
|||
|
|||
|
|
|
||
// temporary/optional cache syscall API
|
|||
|
|
#define CACHE_SYSCALLS "cache"
|
||
|
|
|
||
|
|
#define CACHE_CLEAR 1 // takes no parameters
|
||
|
|
#define CACHE_SET_MODULE 2 // gets the module name as parameter
|
||
|
|
|
||
|
|
#define CACHE_MODULES_NAME "file_cache"
|
||
|
|
|
||
struct cache_module_info {
|
|||
|
|
module_info info;
|
||
|
|
|
||
|
|
void (*node_opened)(mount_id mountID, vnode_id vnodeID, off_t size);
|
||
|
|
void (*node_closed)(mount_id mountID, vnode_id vnodeID);
|
||
|
|
};
|
||
|
|
|
||
#ifdef __cplusplus
|
|||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
extern void cache_node_opened(vm_cache_ref *cache, mount_id mountID, vnode_id vnodeID);
|
|||
|
|
extern void cache_node_closed(vm_cache_ref *cache, mount_id mountID, vnode_id vnodeID);
|
||
extern void cache_prefetch(mount_id mountID, vnode_id vnodeID);
|
|||
|
|
extern status_t file_cache_init(void);
|
||
|
|
|
||
extern vm_store *vm_create_vnode_store(void *vnode);
|
|||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* _KRENEL_FILE_CACHE_H */
|