123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /* $OpenBSD: ext2fs_extern.h,v 1.35 2014/07/14 08:54:13 pelikan Exp $ */
- /* $NetBSD: ext2fs_extern.h,v 1.1 1997/06/11 09:33:55 bouyer Exp $ */
- /*-
- * Copyright (c) 1997 Manuel Bouyer.
- * Copyright (c) 1991, 1993, 1994
- * The Regents of the University of California. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * @(#)ffs_extern.h 8.3 (Berkeley) 4/16/94
- * Modified for ext2fs by Manuel Bouyer.
- */
- struct buf;
- struct fid;
- struct m_ext2fs;
- struct inode;
- struct mount;
- struct nameidata;
- struct proc;
- struct statfs;
- struct timeval;
- struct ucred;
- struct ufsmount;
- struct uio;
- struct vnode;
- struct vfsconf;
- struct mbuf;
- struct componentname;
- extern struct pool ext2fs_inode_pool; /* memory pool for inodes */
- extern struct pool ext2fs_dinode_pool; /* memory pool for dinodes */
- __BEGIN_DECLS
- /* ext2fs_alloc.c */
- int ext2fs_alloc(struct inode *, u_int32_t, u_int32_t , struct ucred *,
- u_int32_t *);
- int ext2fs_inode_alloc(struct inode *, mode_t mode, struct ucred *,
- struct vnode **);
- daddr_t ext2fs_blkpref(struct inode *, u_int32_t, int, u_int32_t *);
- void ext2fs_blkfree(struct inode *, u_int32_t);
- void ext2fs_inode_free(struct inode *, ufsino_t, mode_t);
- /* ext2fs_balloc.c */
- int ext2fs_buf_alloc(struct inode *, u_int32_t, int, struct ucred *,
- struct buf **, int);
- /* ext2fs_bmap.c */
- int ext2fs_bmap(void *);
- /* ext2fs_inode.c */
- u_int64_t ext2fs_size(struct inode *);
- int ext2fs_init(struct vfsconf *);
- int ext2fs_setsize(struct inode *, u_int64_t);
- int ext2fs_update(struct inode *ip, int waitfor);
- int ext2fs_truncate(struct inode *, off_t, int, struct ucred *);
- int ext2fs_inactive(void *);
- /* ext2fs_lookup.c */
- int ext2fs_readdir(void *);
- int ext2fs_lookup(void *);
- int ext2fs_direnter(struct inode *, struct vnode *, struct componentname *);
- int ext2fs_dirremove(struct vnode *, struct componentname *);
- int ext2fs_dirrewrite(struct inode *, struct inode *, struct componentname *);
- int ext2fs_dirempty(struct inode *, ufsino_t, struct ucred *);
- int ext2fs_checkpath(struct inode *, struct inode *, struct ucred *);
- /* ext2fs_subr.c */
- int ext2fs_bufatoff(struct inode *, off_t, char **, struct buf **);
- int ext2fs_vinit(struct mount *, struct vops *, struct vops *,
- struct vnode **);
- #ifdef DIAGNOSTIC
- void ext2fs_checkoverlap(struct buf *, struct inode *);
- #endif
- /* ext2fs_vfsops.c */
- int ext2fs_mountroot(void);
- int ext2fs_mount(struct mount *, const char *, void *, struct nameidata *,
- struct proc *);
- int ext2fs_reload(struct mount *, struct ucred *, struct proc *);
- int ext2fs_mountfs(struct vnode *, struct mount *, struct proc *);
- int ext2fs_unmount(struct mount *, int, struct proc *);
- int ext2fs_flushfiles(struct mount *, int, struct proc *);
- int ext2fs_statfs(struct mount *, struct statfs *, struct proc *);
- int ext2fs_sync(struct mount *, int, struct ucred *, struct proc *);
- int ext2fs_vget(struct mount *, ino_t, struct vnode **);
- int ext2fs_fhtovp(struct mount *, struct fid *, struct vnode **);
- int ext2fs_vptofh(struct vnode *, struct fid *);
- int ext2fs_sbupdate(struct ufsmount *, int);
- int ext2fs_cgupdate(struct ufsmount *, int);
- int ext2fs_sysctl(int *, u_int, void *, size_t *, void *, size_t,
- struct proc *);
- /* ext2fs_readwrite.c */
- int ext2fs_read(void *);
- int ext2fs_write(void *);
- /* ext2fs_vnops.c */
- int ext2fs_create(void *);
- int ext2fs_mknod(void *);
- int ext2fs_open(void *);
- int ext2fs_access(void *);
- int ext2fs_getattr(void *);
- int ext2fs_setattr(void *);
- int ext2fs_remove(void *);
- int ext2fs_link(void *);
- int ext2fs_rename(void *);
- int ext2fs_mkdir(void *);
- int ext2fs_rmdir(void *);
- int ext2fs_symlink(void *);
- int ext2fs_readlink(void *);
- int ext2fs_pathconf(void *);
- int ext2fs_advlock(void *);
- int ext2fs_makeinode(int, struct vnode *, struct vnode **,
- struct componentname *cnp);
- int ext2fs_fsync(void *);
- int ext2fs_reclaim(void *);
- int ext2fsfifo_reclaim(void *);
- __END_DECLS
- #define IS_EXT2_VNODE(vp) (vp->v_tag == VT_EXT2FS)
- extern struct vops ext2fs_vops;
- extern struct vops ext2fs_specvops;
- #ifdef FIFO
- extern struct vops ext2fs_fifovops;
- #define EXT2FS_FIFOOPS &ext2fs_fifovops
- #else
- #define EXT2FS_FIFOOPS NULL
- #endif
|