Deleted Added
full compact
ffs_vfsops.c (30283) ffs_vfsops.c (30309)
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 * $Id: ffs_vfsops.c,v 1.56 1997/09/27 13:40:08 kato Exp $
34 * $Id: ffs_vfsops.c,v 1.57 1997/10/10 18:16:59 phk Exp $
35 */
36
37#include "opt_quota.h"
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/namei.h>
42#include <sys/proc.h>

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

59#include <ufs/ffs/fs.h>
60#include <ufs/ffs/ffs_extern.h>
61
62#include <vm/vm.h>
63#include <vm/vm_prot.h>
64#include <vm/vm_page.h>
65#include <vm/vm_extern.h>
66
35 */
36
37#include "opt_quota.h"
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/namei.h>
42#include <sys/proc.h>

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

59#include <ufs/ffs/fs.h>
60#include <ufs/ffs/ffs_extern.h>
61
62#include <vm/vm.h>
63#include <vm/vm_prot.h>
64#include <vm/vm_page.h>
65#include <vm/vm_extern.h>
66
67MALLOC_DEFINE(M_FFSNODE, "FFS node", "FFS vnode private part");
68
67static int ffs_sbupdate __P((struct ufsmount *, int));
68static int ffs_reload __P((struct mount *,struct ucred *,struct proc *));
69static int ffs_oldfscompat __P((struct fs *));
70static int ffs_mount __P((struct mount *, char *, caddr_t,
71 struct nameidata *, struct proc *));
72static int ffs_init __P((struct vfsconf *));
73
74struct vfsops ufs_vfsops = {

--- 1091 unchanged lines hidden ---
69static int ffs_sbupdate __P((struct ufsmount *, int));
70static int ffs_reload __P((struct mount *,struct ucred *,struct proc *));
71static int ffs_oldfscompat __P((struct fs *));
72static int ffs_mount __P((struct mount *, char *, caddr_t,
73 struct nameidata *, struct proc *));
74static int ffs_init __P((struct vfsconf *));
75
76struct vfsops ufs_vfsops = {

--- 1091 unchanged lines hidden ---