1 /* 2 * Copyright 2004-2007, 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_types.h> 10 11 12 struct vnode_store { 13 vm_store vm; 14 struct vnode* vnode; 15 dev_t device; 16 ino_t inode; 17 void* file_cache_ref; 18 }; 19 20 #endif /* VNODE_STORE_H */ 21