2004-09-03 21:04:09 +04:00
|
|
|
/*
|
2004-11-23 06:22:35 +03:00
|
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-09-03 21:04:09 +04:00
|
|
|
#ifndef VNODE_STORE_H
|
|
|
|
#define VNODE_STORE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <vm.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct vnode_store {
|
|
|
|
vm_store vm;
|
|
|
|
void *vnode;
|
2004-12-14 01:47:41 +03:00
|
|
|
void *file_cache_ref;
|
2004-09-03 21:04:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* VNODE_STORE_H */
|