Deleted Added
full compact
nfs_vfsops.c (38289) nfs_vfsops.c (38869)
1/*
2 * Copyright (c) 1989, 1993, 1995
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.12 (Berkeley) 5/20/95
1/*
2 * Copyright (c) 1989, 1993, 1995
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.12 (Berkeley) 5/20/95
37 * $Id: nfs_vfsops.c,v 1.72 1998/06/07 17:12:30 dfr Exp $
37 * $Id: nfs_vfsops.c,v 1.73 1998/08/12 20:17:42 bde Exp $
38 */
39
40#include <sys/param.h>
41#include <sys/sockio.h>
42#include <sys/proc.h>
43#include <sys/vnode.h>
44#include <sys/kernel.h>
45#include <sys/sysctl.h>

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

126 nfs_unmount,
127 nfs_root,
128 nfs_quotactl,
129 nfs_statfs,
130 nfs_sync,
131 nfs_vget,
132 nfs_fhtovp,
133 nfs_vptofh,
38 */
39
40#include <sys/param.h>
41#include <sys/sockio.h>
42#include <sys/proc.h>
43#include <sys/vnode.h>
44#include <sys/kernel.h>
45#include <sys/sysctl.h>

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

126 nfs_unmount,
127 nfs_root,
128 nfs_quotactl,
129 nfs_statfs,
130 nfs_sync,
131 nfs_vget,
132 nfs_fhtovp,
133 nfs_vptofh,
134 nfs_init
134 nfs_init,
135 0,
136 &sysctl___vfs_nfs
135};
136VFS_SET(nfs_vfsops, nfs, MOUNT_NFS, VFCF_NETWORK);
137
138/*
139 * This structure must be filled in by a primary bootstrap or bootstrap
140 * server for a diskless/dataless machine. It is initialized below just
141 * to ensure that it is allocated to initialized data (.data not .bss).
142 */

--- 1008 unchanged lines hidden ---
137};
138VFS_SET(nfs_vfsops, nfs, MOUNT_NFS, VFCF_NETWORK);
139
140/*
141 * This structure must be filled in by a primary bootstrap or bootstrap
142 * server for a diskless/dataless machine. It is initialized below just
143 * to ensure that it is allocated to initialized data (.data not .bss).
144 */

--- 1008 unchanged lines hidden ---