1 /* 2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef VNODE_STORE_H 6 #define VNODE_STORE_H 7 8 9 #include <vm.h> 10 11 12 struct vnode_store { 13 vm_store vm; 14 void *vnode; 15 void *file_cache_ref; 16 }; 17 18 #endif /* VNODE_STORE_H */ 19