Deleted Added
full compact
ext2_vfsops.c (30280) ext2_vfsops.c (30309)
1/*
2 * modified for EXT2FS support in Lites 1.1
3 *
4 * Aug 1995, Godmar Back (gback@cs.utah.edu)
5 * University of Utah, Department of Computer Science
6 */
7/*
8 * Copyright (c) 1989, 1991, 1993, 1994

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

81 struct proc *p));
82static int ext2_sbupdate __P((struct ufsmount *, int));
83static int ext2_statfs __P((struct mount *, struct statfs *, struct proc *));
84static int ext2_sync __P((struct mount *, int, struct ucred *, struct proc *));
85static int ext2_unmount __P((struct mount *, int, struct proc *));
86static int ext2_vget __P((struct mount *, ino_t, struct vnode **));
87static int ext2_vptofh __P((struct vnode *, struct fid *));
88
1/*
2 * modified for EXT2FS support in Lites 1.1
3 *
4 * Aug 1995, Godmar Back (gback@cs.utah.edu)
5 * University of Utah, Department of Computer Science
6 */
7/*
8 * Copyright (c) 1989, 1991, 1993, 1994

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

81 struct proc *p));
82static int ext2_sbupdate __P((struct ufsmount *, int));
83static int ext2_statfs __P((struct mount *, struct statfs *, struct proc *));
84static int ext2_sync __P((struct mount *, int, struct ucred *, struct proc *));
85static int ext2_unmount __P((struct mount *, int, struct proc *));
86static int ext2_vget __P((struct mount *, ino_t, struct vnode **));
87static int ext2_vptofh __P((struct vnode *, struct fid *));
88
89malloc_type_t M_EXT2NODE = { "EXT2 nodes", "EXT2 Filsystem inodes"};
89MALLOC_DEFINE(M_EXT2NODE, "EXT2 nodes", "EXT2 Filsystem inodes");
90
91static struct vfsops ext2fs_vfsops = {
92 ext2_mount,
93 ufs_start, /* empty function */
94 ext2_unmount,
95 ufs_root, /* root inode via vget */
96 ufs_quotactl, /* does operations associated with quotas */
97 ext2_statfs,

--- 1035 unchanged lines hidden ---
90
91static struct vfsops ext2fs_vfsops = {
92 ext2_mount,
93 ufs_start, /* empty function */
94 ext2_unmount,
95 ufs_root, /* root inode via vget */
96 ufs_quotactl, /* does operations associated with quotas */
97 ext2_statfs,

--- 1035 unchanged lines hidden ---