tmpfs_vnops.h revision 1.10
1/*	$NetBSD: tmpfs_vnops.h,v 1.10 2008/01/25 14:32:14 ad Exp $	*/
2
3/*
4 * Copyright (c) 2005, 2006 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
55extern int (**tmpfs_vnodeop_p)(void *);
56
57int	tmpfs_lookup		(void *);
58int	tmpfs_create		(void *);
59int	tmpfs_mknod		(void *);
60int	tmpfs_open		(void *);
61int	tmpfs_close		(void *);
62int	tmpfs_access		(void *);
63int	tmpfs_getattr		(void *);
64int	tmpfs_setattr		(void *);
65int	tmpfs_read		(void *);
66int	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_kqfilter
71#define	tmpfs_revoke		genfs_revoke
72#define	tmpfs_mmap		genfs_mmap
73int	tmpfs_fsync		(void *);
74#define	tmpfs_seek		genfs_seek
75int	tmpfs_remove		(void *);
76int	tmpfs_link		(void *);
77int	tmpfs_rename		(void *);
78int	tmpfs_mkdir		(void *);
79int	tmpfs_rmdir		(void *);
80int	tmpfs_symlink		(void *);
81int	tmpfs_readdir		(void *);
82int	tmpfs_readlink		(void *);
83#define	tmpfs_abortop		genfs_abortop
84int	tmpfs_inactive		(void *);
85int	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
90int	tmpfs_print		(void *);
91int	tmpfs_pathconf		(void *);
92#define	tmpfs_islocked		genfs_islocked
93int	tmpfs_advlock		(void *);
94#define	tmpfs_bwrite		genfs_nullop
95int	tmpfs_getpages		(void *);
96int	tmpfs_putpages		(void *);
97
98/* --------------------------------------------------------------------- */
99
100#endif /* _FS_TMPFS_TMPFS_VNOPS_H_ */
101