Deleted Added
full compact
ffs_extern.h (50477) ffs_extern.h (51138)
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 * $FreeBSD: head/sys/ufs/ffs/ffs_extern.h 50477 1999-08-28 01:08:13Z peter $
34 * $FreeBSD: head/sys/ufs/ffs/ffs_extern.h 51138 1999-09-11 00:46:08Z alfred $
35 */
36
37#ifndef _UFS_FFS_EXTERN_H
38#define _UFS_FFS_EXTERN_H
39
40/*
41 * Sysctl values for the fast filesystem.
42 */

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

71int ffs_alloc __P((struct inode *,
72 ufs_daddr_t, ufs_daddr_t, int, struct ucred *, ufs_daddr_t *));
73int ffs_balloc __P((struct vop_balloc_args *));
74int ffs_blkatoff __P((struct vnode *, off_t, char **, struct buf **));
75void ffs_blkfree __P((struct inode *, ufs_daddr_t, long));
76ufs_daddr_t ffs_blkpref __P((struct inode *, ufs_daddr_t, int, ufs_daddr_t *));
77int ffs_bmap __P((struct vop_bmap_args *));
78void ffs_clrblock __P((struct fs *, u_char *, ufs_daddr_t));
35 */
36
37#ifndef _UFS_FFS_EXTERN_H
38#define _UFS_FFS_EXTERN_H
39
40/*
41 * Sysctl values for the fast filesystem.
42 */

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

71int ffs_alloc __P((struct inode *,
72 ufs_daddr_t, ufs_daddr_t, int, struct ucred *, ufs_daddr_t *));
73int ffs_balloc __P((struct vop_balloc_args *));
74int ffs_blkatoff __P((struct vnode *, off_t, char **, struct buf **));
75void ffs_blkfree __P((struct inode *, ufs_daddr_t, long));
76ufs_daddr_t ffs_blkpref __P((struct inode *, ufs_daddr_t, int, ufs_daddr_t *));
77int ffs_bmap __P((struct vop_bmap_args *));
78void ffs_clrblock __P((struct fs *, u_char *, ufs_daddr_t));
79int ffs_fhtovp __P((struct mount *, struct fid *, struct sockaddr *,
80 struct vnode **, int *, struct ucred **));
79int ffs_fhtovp __P((struct mount *, struct fid *, struct vnode **));
80int ffs_checkexp __P((struct mount *, struct sockaddr *, int *,
81 struct ucred **));
81int ffs_flushfiles __P((struct mount *, int, struct proc *));
82void ffs_fragacct __P((struct fs *, int, int32_t [], int));
83int ffs_freefile __P(( struct vnode *, ino_t, int ));
84int ffs_isblock __P((struct fs *, u_char *, ufs_daddr_t));
85int ffs_isfreeblock __P((struct fs *, unsigned char *, ufs_daddr_t));
86int ffs_mountfs __P((struct vnode *, struct mount *, struct proc *,
87 struct malloc_type *));
88int ffs_mountroot __P((void));

--- 47 unchanged lines hidden ---
82int ffs_flushfiles __P((struct mount *, int, struct proc *));
83void ffs_fragacct __P((struct fs *, int, int32_t [], int));
84int ffs_freefile __P(( struct vnode *, ino_t, int ));
85int ffs_isblock __P((struct fs *, u_char *, ufs_daddr_t));
86int ffs_isfreeblock __P((struct fs *, unsigned char *, ufs_daddr_t));
87int ffs_mountfs __P((struct vnode *, struct mount *, struct proc *,
88 struct malloc_type *));
89int ffs_mountroot __P((void));

--- 47 unchanged lines hidden ---