1*b819cea2SGordon Ross /* 2*b819cea2SGordon Ross * This file and its contents are supplied under the terms of the 3*b819cea2SGordon Ross * Common Development and Distribution License ("CDDL"), version 1.0. 4*b819cea2SGordon Ross * You may only use this file in accordance with the terms of version 5*b819cea2SGordon Ross * 1.0 of the CDDL. 6*b819cea2SGordon Ross * 7*b819cea2SGordon Ross * A full copy of the text of the CDDL should have accompanied this 8*b819cea2SGordon Ross * source. A copy of the CDDL is also available via the Internet at 9*b819cea2SGordon Ross * http://www.illumos.org/license/CDDL. 10*b819cea2SGordon Ross */ 11*b819cea2SGordon Ross 12*b819cea2SGordon Ross /* 13*b819cea2SGordon Ross * Copyright 2014 Nexenta Systems, Inc. All rights reserved. 14*b819cea2SGordon Ross */ 15*b819cea2SGordon Ross 16*b819cea2SGordon Ross #ifndef _VNCACHE_H 17*b819cea2SGordon Ross #define _VNCACHE_H 18*b819cea2SGordon Ross 19*b819cea2SGordon Ross #ifdef __cplusplus 20*b819cea2SGordon Ross extern "C" { 21*b819cea2SGordon Ross #endif 22*b819cea2SGordon Ross 23*b819cea2SGordon Ross struct stat; 24*b819cea2SGordon Ross vnode_t *vncache_lookup(struct stat *); 25*b819cea2SGordon Ross vnode_t *vncache_enter(struct stat *, vnode_t *, char *, int); 26*b819cea2SGordon Ross void vncache_renamed(vnode_t *, vnode_t *, char *); 27*b819cea2SGordon Ross void vncache_inactive(vnode_t *); 28*b819cea2SGordon Ross int vncache_cmp(const void *, const void *); 29*b819cea2SGordon Ross 30*b819cea2SGordon Ross int vncache_init(void); 31*b819cea2SGordon Ross void vncache_fini(void); 32*b819cea2SGordon Ross 33*b819cea2SGordon Ross #ifdef __cplusplus 34*b819cea2SGordon Ross } 35*b819cea2SGordon Ross #endif 36*b819cea2SGordon Ross 37*b819cea2SGordon Ross #endif /* _VNCACHE_H */ 38