Deleted Added
full compact
ffs_extern.h (30492) ffs_extern.h (31352)
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ffs_extern.h 8.6 (Berkeley) 3/30/95
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ffs_extern.h 8.6 (Berkeley) 3/30/95
34 * $Id: ffs_extern.h,v 1.19 1997/10/16 10:49:22 phk Exp $
34 * $Id: ffs_extern.h,v 1.20 1997/10/16 20:32:34 phk Exp $
35 */
36
37#ifndef _UFS_FFS_EXTERN_H
38#define _UFS_FFS_EXTERN_H
39
40/*
41 * Sysctl values for the fast filesystem.
42 */

--- 45 unchanged lines hidden (view full) ---

88int ffs_unmount __P((struct mount *, int, struct proc *));
89int ffs_update __P((struct vnode *, struct timeval *, struct timeval *, int));
90int ffs_valloc __P((struct vnode *, int, struct ucred *, struct vnode **));
91
92int ffs_vfree __P((struct vnode *, ino_t, int));
93int ffs_vget __P((struct mount *, ino_t, struct vnode **));
94int ffs_vptofh __P((struct vnode *, struct fid *));
95
35 */
36
37#ifndef _UFS_FFS_EXTERN_H
38#define _UFS_FFS_EXTERN_H
39
40/*
41 * Sysctl values for the fast filesystem.
42 */

--- 45 unchanged lines hidden (view full) ---

88int ffs_unmount __P((struct mount *, int, struct proc *));
89int ffs_update __P((struct vnode *, struct timeval *, struct timeval *, int));
90int ffs_valloc __P((struct vnode *, int, struct ucred *, struct vnode **));
91
92int ffs_vfree __P((struct vnode *, ino_t, int));
93int ffs_vget __P((struct mount *, ino_t, struct vnode **));
94int ffs_vptofh __P((struct vnode *, struct fid *));
95
96#ifdef DIAGNOSTIC
97int ffs_checkblk __P((struct inode *, ufs_daddr_t, long));
98void ffs_checkoverlap __P((struct buf *, struct inode *));
99#endif
100
101extern vop_t **ffs_vnodeop_p;
102extern vop_t **ffs_specop_p;
103extern vop_t **ffs_fifoop_p;
104
105#endif /* !_UFS_FFS_EXTERN_H */
96extern vop_t **ffs_vnodeop_p;
97extern vop_t **ffs_specop_p;
98extern vop_t **ffs_fifoop_p;
99
100#endif /* !_UFS_FFS_EXTERN_H */