2004-09-03 16:33:32 +00:00
|
|
|
/*
|
2004-12-01 07:35:20 +00:00
|
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-09-03 16:33:32 +00:00
|
|
|
#ifndef _KERNEL_FILE_CACHE_H
|
|
|
|
#define _KERNEL_FILE_CACHE_H
|
|
|
|
|
|
|
|
|
2004-12-01 07:35:20 +00:00
|
|
|
#include <vfs.h>
|
2004-09-03 16:33:32 +00:00
|
|
|
#include <vm_types.h>
|
2004-12-01 07:35:20 +00:00
|
|
|
#include <module.h>
|
2004-09-03 16:33:32 +00:00
|
|
|
|
|
|
|
|
2004-12-01 07:35:20 +00:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2004-09-03 16:33:32 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-12-01 07:35:20 +00:00
|
|
|
extern void cache_node_opened(void *ref, mount_id mountID, vnode_id vnodeID);
|
|
|
|
extern void cache_node_closed(void *ref, mount_id mountID, vnode_id vnodeID);
|
|
|
|
extern void cache_prefetch(mount_id mountID, vnode_id vnodeID);
|
|
|
|
extern status_t file_cache_init(void);
|
|
|
|
|
2004-09-03 16:33:32 +00:00
|
|
|
extern vm_store *vm_create_vnode_store(void *vnode);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _KRENEL_FILE_CACHE_H */
|