Deleted Added
full compact
ffs_vfsops.c (101308) ffs_vfsops.c (101777)
1/*
2 * Copyright (c) 1989, 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_vfsops.c 8.31 (Berkeley) 5/20/95
1/*
2 * Copyright (c) 1989, 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_vfsops.c 8.31 (Berkeley) 5/20/95
34 * $FreeBSD: head/sys/ufs/ffs/ffs_vfsops.c 101308 2002-08-04 10:29:36Z jeff $
34 * $FreeBSD: head/sys/ufs/ffs/ffs_vfsops.c 101777 2002-08-13 10:05:50Z phk $
35 */
36
37#include "opt_quota.h"
38#include "opt_ufs.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/stdint.h>

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

67
68static MALLOC_DEFINE(M_FFSNODE, "FFS node", "FFS vnode private part");
69
70static int ffs_sbupdate(struct ufsmount *, int);
71 int ffs_reload(struct mount *,struct ucred *,struct thread *);
72static void ffs_oldfscompat_read(struct fs *, struct ufsmount *,
73 ufs2_daddr_t);
74static void ffs_oldfscompat_write(struct fs *, struct ufsmount *);
35 */
36
37#include "opt_quota.h"
38#include "opt_ufs.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/stdint.h>

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

67
68static MALLOC_DEFINE(M_FFSNODE, "FFS node", "FFS vnode private part");
69
70static int ffs_sbupdate(struct ufsmount *, int);
71 int ffs_reload(struct mount *,struct ucred *,struct thread *);
72static void ffs_oldfscompat_read(struct fs *, struct ufsmount *,
73 ufs2_daddr_t);
74static void ffs_oldfscompat_write(struct fs *, struct ufsmount *);
75static int ffs_init(struct vfsconf *);
76static int ffs_uninit(struct vfsconf *);
75static vfs_init_t ffs_init;
76static vfs_uninit_t ffs_uninit;
77
78static struct vfsops ufs_vfsops = {
79 ffs_mount,
80 ufs_start,
81 ffs_unmount,
82 ufs_root,
83 ufs_quotactl,
84 ffs_statfs,

--- 1371 unchanged lines hidden ---
77
78static struct vfsops ufs_vfsops = {
79 ffs_mount,
80 ufs_start,
81 ffs_unmount,
82 ufs_root,
83 ufs_quotactl,
84 ffs_statfs,

--- 1371 unchanged lines hidden ---