1 /* $NetBSD: tmpfs_vnops.h,v 1.7 2005/12/03 17:34:44 christos Exp $ */ 2 3 /* 4 * Copyright (c) 2005 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Julio M. Merino Vidal, developed as part of Google's Summer of Code 9 * 2005 program. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 3. All advertising materials mentioning features or use of this software 20 * must display the following acknowledgement: 21 * This product includes software developed by the NetBSD 22 * Foundation, Inc. and its contributors. 23 * 4. Neither the name of The NetBSD Foundation nor the names of its 24 * contributors may be used to endorse or promote products derived 25 * from this software without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 37 * POSSIBILITY OF SUCH DAMAGE. 38 */ 39 40 #ifndef _FS_TMPFS_TMPFS_VNOPS_H_ 41 #define _FS_TMPFS_TMPFS_VNOPS_H_ 42 43 #if !defined(_KERNEL) 44 #error not supposed to be exposed to userland. 45 #endif 46 47 #include <miscfs/genfs/genfs.h> 48 49 /* --------------------------------------------------------------------- */ 50 51 /* 52 * Declarations for tmpfs_vnops.c. 53 */ 54 55 extern int (**tmpfs_vnodeop_p)(void *); 56 57 int tmpfs_lookup (void *); 58 int tmpfs_create (void *); 59 int tmpfs_mknod (void *); 60 int tmpfs_open (void *); 61 int tmpfs_close (void *); 62 int tmpfs_access (void *); 63 int tmpfs_getattr (void *); 64 int tmpfs_setattr (void *); 65 int tmpfs_read (void *); 66 int tmpfs_write (void *); 67 #define tmpfs_fcntl genfs_fcntl 68 #define tmpfs_ioctl genfs_enoioctl 69 #define tmpfs_poll genfs_poll 70 #define tmpfs_kqfilter genfs_eopnotsupp 71 #define tmpfs_revoke genfs_revoke 72 #define tmpfs_mmap genfs_mmap 73 int tmpfs_fsync (void *); 74 #define tmpfs_seek genfs_seek 75 int tmpfs_remove (void *); 76 int tmpfs_link (void *); 77 int tmpfs_rename (void *); 78 int tmpfs_mkdir (void *); 79 int tmpfs_rmdir (void *); 80 int tmpfs_symlink (void *); 81 int tmpfs_readdir (void *); 82 int tmpfs_readlink (void *); 83 #define tmpfs_abortop genfs_abortop 84 int tmpfs_inactive (void *); 85 int tmpfs_reclaim (void *); 86 #define tmpfs_lock genfs_lock 87 #define tmpfs_unlock genfs_unlock 88 #define tmpfs_bmap genfs_eopnotsupp 89 #define tmpfs_strategy genfs_eopnotsupp 90 int tmpfs_print (void *); 91 int tmpfs_pathconf (void *); 92 #define tmpfs_islocked genfs_islocked 93 int tmpfs_advlock (void *); 94 #define tmpfs_lease genfs_lease_check 95 #define tmpfs_bwrite genfs_nullop 96 int tmpfs_getpages (void *); 97 int tmpfs_putpages (void *); 98 99 /* --------------------------------------------------------------------- */ 100 101 #endif /* _FS_TMPFS_TMPFS_VNOPS_H_ */ 102