ffs_extern.h revision 1.44 1 1.44 thorpej /* $NetBSD: ffs_extern.h,v 1.44 2005/08/28 19:37:59 thorpej Exp $ */
2 1.2 cgd
3 1.1 mycroft /*-
4 1.1 mycroft * Copyright (c) 1991, 1993, 1994
5 1.1 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * Redistribution and use in source and binary forms, with or without
8 1.1 mycroft * modification, are permitted provided that the following conditions
9 1.1 mycroft * are met:
10 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.1 mycroft * notice, this list of conditions and the following disclaimer.
12 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.1 mycroft * documentation and/or other materials provided with the distribution.
15 1.33 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 mycroft * may be used to endorse or promote products derived from this software
17 1.1 mycroft * without specific prior written permission.
18 1.1 mycroft *
19 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 mycroft * SUCH DAMAGE.
30 1.1 mycroft *
31 1.7 fvdl * @(#)ffs_extern.h 8.6 (Berkeley) 3/30/95
32 1.1 mycroft */
33 1.9 sommerfe
34 1.24 matt #ifndef _UFS_FFS_FFS_EXTERN_H_
35 1.24 matt #define _UFS_FFS_FFS_EXTERN_H_
36 1.24 matt
37 1.7 fvdl /*
38 1.7 fvdl * Sysctl values for the fast filesystem.
39 1.7 fvdl */
40 1.7 fvdl #define FFS_CLUSTERREAD 1 /* cluster reading enabled */
41 1.7 fvdl #define FFS_CLUSTERWRITE 2 /* cluster writing enabled */
42 1.7 fvdl #define FFS_REALLOCBLKS 3 /* block reallocation enabled */
43 1.7 fvdl #define FFS_ASYNCFREE 4 /* asynchronous block freeing enabled */
44 1.16 jdolecek #define FFS_LOG_CHANGEOPT 5 /* log optimalization strategy change */
45 1.16 jdolecek #define FFS_MAXID 6 /* number of valid ffs ids */
46 1.7 fvdl
47 1.7 fvdl #define FFS_NAMES { \
48 1.7 fvdl { 0, 0 }, \
49 1.7 fvdl { "doclusterread", CTLTYPE_INT }, \
50 1.7 fvdl { "doclusterwrite", CTLTYPE_INT }, \
51 1.7 fvdl { "doreallocblks", CTLTYPE_INT }, \
52 1.7 fvdl { "doasyncfree", CTLTYPE_INT }, \
53 1.16 jdolecek { "log_changeopt", CTLTYPE_INT }, \
54 1.7 fvdl }
55 1.7 fvdl
56 1.1 mycroft struct buf;
57 1.1 mycroft struct fid;
58 1.1 mycroft struct fs;
59 1.1 mycroft struct inode;
60 1.32 fvdl struct ufs1_dinode;
61 1.32 fvdl struct ufs2_dinode;
62 1.1 mycroft struct mount;
63 1.1 mycroft struct nameidata;
64 1.32 fvdl struct proc;
65 1.37 christos struct statvfs;
66 1.1 mycroft struct timeval;
67 1.40 he struct timespec;
68 1.1 mycroft struct ucred;
69 1.4 christos struct ufsmount;
70 1.1 mycroft struct uio;
71 1.1 mycroft struct vnode;
72 1.32 fvdl struct mbuf;
73 1.32 fvdl struct cg;
74 1.11 thorpej
75 1.28 fvdl extern struct pool ffs_inode_pool; /* memory pool for inodes */
76 1.28 fvdl extern struct pool ffs_dinode1_pool; /* memory pool for UFS1 dinodes */
77 1.28 fvdl extern struct pool ffs_dinode2_pool; /* memory pool for UFS2 dinodes */
78 1.1 mycroft
79 1.1 mycroft __BEGIN_DECLS
80 1.1 mycroft
81 1.4 christos /* ffs_alloc.c */
82 1.43 thorpej int ffs_alloc(struct inode *, daddr_t, daddr_t , int, struct ucred *,
83 1.43 thorpej daddr_t *);
84 1.43 thorpej int ffs_realloccg(struct inode *, daddr_t, daddr_t, int, int ,
85 1.43 thorpej struct ucred *, struct buf **, daddr_t *);
86 1.43 thorpej int ffs_reallocblks(void *);
87 1.43 thorpej int ffs_valloc(void *);
88 1.43 thorpej daddr_t ffs_blkpref_ufs1(struct inode *, daddr_t, int, int32_t *);
89 1.43 thorpej daddr_t ffs_blkpref_ufs2(struct inode *, daddr_t, int, int64_t *);
90 1.43 thorpej void ffs_blkfree(struct fs *, struct vnode *, daddr_t, long, ino_t);
91 1.43 thorpej int ffs_vfree(void *);
92 1.43 thorpej void ffs_clusteracct(struct fs *, struct cg *, int32_t, int);
93 1.43 thorpej int ffs_checkfreefile(struct fs *, struct vnode *, ino_t);
94 1.4 christos
95 1.4 christos /* ffs_balloc.c */
96 1.43 thorpej int ffs_balloc(void *);
97 1.4 christos
98 1.8 bouyer /* ffs_bswap.c */
99 1.43 thorpej void ffs_sb_swap(struct fs*, struct fs *);
100 1.43 thorpej void ffs_dinode1_swap(struct ufs1_dinode *, struct ufs1_dinode *);
101 1.43 thorpej void ffs_dinode2_swap(struct ufs2_dinode *, struct ufs2_dinode *);
102 1.43 thorpej void ffs_csum_swap(struct csum *, struct csum *, int);
103 1.43 thorpej void ffs_csumtotal_swap(struct csum_total *, struct csum_total *);
104 1.43 thorpej void ffs_cg_swap(struct cg *, struct cg *, struct fs *);
105 1.8 bouyer
106 1.4 christos /* ffs_inode.c */
107 1.43 thorpej int ffs_update(void *);
108 1.43 thorpej int ffs_truncate(void *);
109 1.4 christos
110 1.4 christos /* ffs_subr.c */
111 1.43 thorpej void ffs_load_inode(struct buf *, struct inode *, struct fs *, ino_t);
112 1.43 thorpej int ffs_blkatoff(void *);
113 1.43 thorpej int ffs_freefile(struct fs *, struct vnode *, ino_t, int);
114 1.43 thorpej void ffs_fragacct(struct fs *, int, int32_t[], int, int);
115 1.1 mycroft #ifdef DIAGNOSTIC
116 1.43 thorpej void ffs_checkoverlap(struct buf *, struct inode *);
117 1.1 mycroft #endif
118 1.43 thorpej int ffs_isblock(struct fs *, u_char *, int32_t);
119 1.43 thorpej int ffs_isfreeblock(struct fs *, u_char *, int32_t);
120 1.43 thorpej void ffs_clrblock(struct fs *, u_char *, int32_t);
121 1.43 thorpej void ffs_setblock(struct fs *, u_char *, int32_t);
122 1.4 christos
123 1.4 christos /* ffs_vfsops.c */
124 1.43 thorpej void ffs_init(void);
125 1.43 thorpej void ffs_reinit(void);
126 1.43 thorpej void ffs_done(void);
127 1.43 thorpej int ffs_mountroot(void);
128 1.43 thorpej int ffs_mount(struct mount *, const char *, void *, struct nameidata *,
129 1.43 thorpej struct proc *);
130 1.43 thorpej int ffs_reload(struct mount *, struct ucred *, struct proc *);
131 1.43 thorpej int ffs_mountfs(struct vnode *, struct mount *, struct proc *);
132 1.43 thorpej int ffs_unmount(struct mount *, int, struct proc *);
133 1.43 thorpej int ffs_flushfiles(struct mount *, int, struct proc *);
134 1.43 thorpej int ffs_statvfs(struct mount *, struct statvfs *, struct proc *);
135 1.43 thorpej int ffs_sync(struct mount *, int, struct ucred *, struct proc *);
136 1.43 thorpej int ffs_vget(struct mount *, ino_t, struct vnode **);
137 1.43 thorpej int ffs_fhtovp(struct mount *, struct fid *, struct vnode **);
138 1.43 thorpej int ffs_vptofh(struct vnode *, struct fid *);
139 1.44 thorpej int ffs_extattrctl(struct mount *, int, struct vnode *, int,
140 1.44 thorpej const char *, struct proc *);
141 1.43 thorpej int ffs_sbupdate(struct ufsmount *, int);
142 1.43 thorpej int ffs_cgupdate(struct ufsmount *, int);
143 1.23 dbj
144 1.23 dbj /* ffs_appleufs.c */
145 1.43 thorpej u_int16_t ffs_appleufs_cksum(const struct appleufslabel *);
146 1.43 thorpej int ffs_appleufs_validate(const char*, const struct appleufslabel *,
147 1.43 thorpej struct appleufslabel *);
148 1.43 thorpej void ffs_appleufs_set(struct appleufslabel *, const char *, time_t,
149 1.43 thorpej uint64_t);
150 1.23 dbj
151 1.4 christos
152 1.4 christos /* ffs_vnops.c */
153 1.43 thorpej int ffs_read(void *);
154 1.43 thorpej int ffs_write(void *);
155 1.43 thorpej int ffs_fsync(void *);
156 1.43 thorpej int ffs_reclaim(void *);
157 1.43 thorpej int ffs_getpages(void *);
158 1.43 thorpej int ffs_putpages(void *);
159 1.43 thorpej void ffs_gop_size(struct vnode *, off_t, off_t *, int);
160 1.44 thorpej int ffs_openextattr(void *);
161 1.44 thorpej int ffs_closeextattr(void *);
162 1.44 thorpej int ffs_getextattr(void *);
163 1.44 thorpej int ffs_setextattr(void *);
164 1.44 thorpej int ffs_listextattr(void *);
165 1.44 thorpej int ffs_deleteextattr(void *);
166 1.38 atatat
167 1.38 atatat #ifdef SYSCTL_SETUP_PROTO
168 1.38 atatat SYSCTL_SETUP_PROTO(sysctl_vfs_ffs_setup);
169 1.38 atatat #endif /* SYSCTL_SETUP_PROTO */
170 1.38 atatat
171 1.1 mycroft __END_DECLS
172 1.13 fvdl
173 1.42 perry
174 1.13 fvdl /*
175 1.39 hannken * Snapshot function prototypes.
176 1.39 hannken */
177 1.39 hannken int ffs_snapblkfree(struct fs *, struct vnode *, daddr_t, long, ino_t);
178 1.39 hannken void ffs_snapremove(struct vnode *);
179 1.39 hannken int ffs_snapshot(struct mount *, struct vnode *, struct timespec *);
180 1.39 hannken void ffs_snapshot_mount(struct mount *);
181 1.39 hannken void ffs_snapshot_unmount(struct mount *);
182 1.39 hannken void ffs_snapgone(struct inode *);
183 1.39 hannken
184 1.39 hannken /*
185 1.13 fvdl * Soft dependency function prototypes.
186 1.13 fvdl */
187 1.43 thorpej void softdep_initialize(void);
188 1.43 thorpej void softdep_reinitialize(void);
189 1.43 thorpej int softdep_mount(struct vnode *, struct mount *, struct fs *,
190 1.43 thorpej struct ucred *);
191 1.43 thorpej int softdep_flushworklist(struct mount *, int *, struct proc *);
192 1.43 thorpej int softdep_flushfiles(struct mount *, int, struct proc *);
193 1.43 thorpej void softdep_update_inodeblock(struct inode *, struct buf *, int);
194 1.43 thorpej void softdep_load_inodeblock(struct inode *);
195 1.43 thorpej void softdep_freefile(void *);
196 1.43 thorpej void softdep_setup_freeblocks(struct inode *, off_t, int);
197 1.43 thorpej void softdep_setup_inomapdep(struct buf *, struct inode *, ino_t);
198 1.43 thorpej void softdep_setup_blkmapdep(struct buf *, struct fs *, daddr_t);
199 1.43 thorpej void softdep_setup_allocdirect(struct inode *, daddr_t, daddr_t,
200 1.43 thorpej daddr_t, long, long, struct buf *);
201 1.43 thorpej void softdep_setup_allocindir_meta(struct buf *, struct inode *,
202 1.43 thorpej struct buf *, int, daddr_t);
203 1.43 thorpej void softdep_setup_allocindir_page(struct inode *, daddr_t,
204 1.43 thorpej struct buf *, int, daddr_t, daddr_t,
205 1.43 thorpej struct buf *);
206 1.43 thorpej void softdep_fsync_mountdev(struct vnode *);
207 1.43 thorpej int softdep_sync_metadata(void *);
208 1.43 thorpej
209 1.43 thorpej extern int (**ffs_vnodeop_p)(void *);
210 1.43 thorpej extern int (**ffs_specop_p)(void *);
211 1.43 thorpej extern int (**ffs_fifoop_p)(void *);
212 1.10 sommerfe
213 1.24 matt #endif /* !_UFS_FFS_FFS_EXTERN_H_ */
214