Deleted Added
full compact
nfs_vfsops.c (2152) nfs_vfsops.c (2946)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfs_vfsops.c 8.3 (Berkeley) 1/4/94
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfs_vfsops.c 8.3 (Berkeley) 1/4/94
37 * $Id: nfs_vfsops.c,v 1.2 1994/08/02 07:52:16 davidg Exp $
37 * $Id: nfs_vfsops.c,v 1.3 1994/08/20 16:03:19 davidg Exp $
38 */
39
40#include <sys/param.h>
41#include <sys/conf.h>
42#include <sys/ioctl.h>
43#include <sys/signal.h>
44#include <sys/proc.h>
45#include <sys/namei.h>

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

76 nfs_quotactl,
77 nfs_statfs,
78 nfs_sync,
79 nfs_vget,
80 nfs_fhtovp,
81 nfs_vptofh,
82 nfs_init,
83};
38 */
39
40#include <sys/param.h>
41#include <sys/conf.h>
42#include <sys/ioctl.h>
43#include <sys/signal.h>
44#include <sys/proc.h>
45#include <sys/namei.h>

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

76 nfs_quotactl,
77 nfs_statfs,
78 nfs_sync,
79 nfs_vget,
80 nfs_fhtovp,
81 nfs_vptofh,
82 nfs_init,
83};
84VFS_SET(nfs_vfsops, nfs, MOUNT_NFS, 0);
84
85/*
86 * This structure must be filled in by a primary bootstrap or bootstrap
87 * server for a diskless/dataless machine. It is initialized below just
88 * to ensure that it is allocated to initialized data (.data not .bss).
89 */
90struct nfs_diskless nfs_diskless = { 0 };
91

--- 650 unchanged lines hidden ---
85
86/*
87 * This structure must be filled in by a primary bootstrap or bootstrap
88 * server for a diskless/dataless machine. It is initialized below just
89 * to ensure that it is allocated to initialized data (.data not .bss).
90 */
91struct nfs_diskless nfs_diskless = { 0 };
92

--- 650 unchanged lines hidden ---