Deleted Added
full compact
ffs_vfsops.c (52635) ffs_vfsops.c (52782)
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 52635 1999-10-29 18:09:36Z phk $
34 * $FreeBSD: head/sys/ufs/ffs/ffs_vfsops.c 52782 1999-11-01 23:57:28Z msmith $
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>

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

147 if( path == NULL) {
148 /*
149 ***
150 * Mounting root file system
151 ***
152 */
153
154 if ((err = bdevvp(rootdev, &rootvp))) {
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>

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

147 if( path == NULL) {
148 /*
149 ***
150 * Mounting root file system
151 ***
152 */
153
154 if ((err = bdevvp(rootdev, &rootvp))) {
155 printf("ffs_mountroot: can't find rootvp");
155 printf("ffs_mountroot: can't find rootvp\n");
156 return (err);
157 }
158
159 if( ( err = ffs_mountfs(rootvp, mp, p, M_FFSNODE)) != 0) {
160 /* fs specific cleanup (if any)*/
161 goto error_1;
162 }
163

--- 1116 unchanged lines hidden ---
156 return (err);
157 }
158
159 if( ( err = ffs_mountfs(rootvp, mp, p, M_FFSNODE)) != 0) {
160 /* fs specific cleanup (if any)*/
161 goto error_1;
162 }
163

--- 1116 unchanged lines hidden ---