Deleted Added
full compact
ext2_vfsops.c (171450) ext2_vfsops.c (171852)
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

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

28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)ffs_vfsops.c 8.8 (Berkeley) 4/18/94
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

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

28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)ffs_vfsops.c 8.8 (Berkeley) 4/18/94
36 * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_vfsops.c 171450 2007-07-14 21:18:19Z rodrigc $
36 * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_vfsops.c 171852 2007-08-15 17:40:09Z jhb $
37 */
38
39/*-
40 * COPYRIGHT.INFO says this has some GPL'd code from ext2_super.c in it
41 *
42 * This program is free software; you can redistribute it and/or modify
43 * it under the terms of the GNU General Public License as published by
44 * the Free Software Foundation; either version 2 of the License.

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

113#define bsd_free free
114
115static int ext2_check_sb_compat(struct ext2_super_block *es, struct cdev *dev,
116 int ronly);
117static int compute_sb_data(struct vnode * devvp,
118 struct ext2_super_block * es, struct ext2_sb_info * fs);
119
120static const char *ext2_opts[] = { "from", "export", "union", "acls", "exec",
37 */
38
39/*-
40 * COPYRIGHT.INFO says this has some GPL'd code from ext2_super.c in it
41 *
42 * This program is free software; you can redistribute it and/or modify
43 * it under the terms of the GNU General Public License as published by
44 * the Free Software Foundation; either version 2 of the License.

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

113#define bsd_free free
114
115static int ext2_check_sb_compat(struct ext2_super_block *es, struct cdev *dev,
116 int ronly);
117static int compute_sb_data(struct vnode * devvp,
118 struct ext2_super_block * es, struct ext2_sb_info * fs);
119
120static const char *ext2_opts[] = { "from", "export", "union", "acls", "exec",
121 "atime", "union", "suiddir", "multilabel", "symfollow", "clusterr",
122 "clusterw", "force", NULL };
121 "noatime", "union", "suiddir", "multilabel", "nosymfollow",
122 "noclusterr", "noclusterw", "force", NULL };
123
124/*
125 * VFS Operations.
126 *
127 * mount system call
128 */
129static int
130ext2_mount(mp, td)

--- 1027 unchanged lines hidden ---
123
124/*
125 * VFS Operations.
126 *
127 * mount system call
128 */
129static int
130ext2_mount(mp, td)

--- 1027 unchanged lines hidden ---