Deleted Added
full compact
ffs_extern.h (141522) ffs_extern.h (141539)
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)ffs_extern.h 8.6 (Berkeley) 3/30/95
30 * $FreeBSD: head/sys/ufs/ffs/ffs_extern.h 141522 2005-02-08 16:25:50Z phk $
30 * $FreeBSD: head/sys/ufs/ffs/ffs_extern.h 141539 2005-02-08 20:29:10Z phk $
31 */
32
33#ifndef _UFS_FFS_EXTERN_H
34#define _UFS_FFS_EXTERN_H
35
36struct buf;
37struct cg;
38struct fid;

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

96
97/*
98 * Soft update function prototypes.
99 */
100void softdep_initialize(void);
101void softdep_uninitialize(void);
102int softdep_mount(struct vnode *, struct mount *, struct fs *,
103 struct ucred *);
31 */
32
33#ifndef _UFS_FFS_EXTERN_H
34#define _UFS_FFS_EXTERN_H
35
36struct buf;
37struct cg;
38struct fid;

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

96
97/*
98 * Soft update function prototypes.
99 */
100void softdep_initialize(void);
101void softdep_uninitialize(void);
102int softdep_mount(struct vnode *, struct mount *, struct fs *,
103 struct ucred *);
104void softdep_move_dependencies(struct buf *, struct buf *);
104int softdep_flushworklist(struct mount *, int *, struct thread *);
105int softdep_flushfiles(struct mount *, int, struct thread *);
106void softdep_update_inodeblock(struct inode *, struct buf *, int);
107void softdep_load_inodeblock(struct inode *);
108void softdep_freefile(struct vnode *, ino_t, int);
109int softdep_request_cleanup(struct fs *, struct vnode *);
110void softdep_setup_freeblocks(struct inode *, off_t, int);
111void softdep_setup_inomapdep(struct buf *, struct inode *, ino_t);

--- 18 unchanged lines hidden ---
105int softdep_flushworklist(struct mount *, int *, struct thread *);
106int softdep_flushfiles(struct mount *, int, struct thread *);
107void softdep_update_inodeblock(struct inode *, struct buf *, int);
108void softdep_load_inodeblock(struct inode *);
109void softdep_freefile(struct vnode *, ino_t, int);
110int softdep_request_cleanup(struct fs *, struct vnode *);
111void softdep_setup_freeblocks(struct inode *, off_t, int);
112void softdep_setup_inomapdep(struct buf *, struct inode *, ino_t);

--- 18 unchanged lines hidden ---