Deleted Added
full compact
nfs_clvfsops.c (221066) nfs_clvfsops.c (221124)
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

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

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from nfs_vfsops.c 8.12 (Berkeley) 5/20/95
33 */
34
35#include <sys/cdefs.h>
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

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

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from nfs_vfsops.c 8.12 (Berkeley) 5/20/95
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/fs/nfsclient/nfs_clvfsops.c 221066 2011-04-26 13:50:11Z rmacklem $");
36__FBSDID("$FreeBSD: head/sys/fs/nfsclient/nfs_clvfsops.c 221124 2011-04-27 17:51:51Z rmacklem $");
37
38
39#include "opt_bootp.h"
40#include "opt_nfsroot.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/kernel.h>

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

126 .vfs_cmount = nfs_cmount,
127 .vfs_root = nfs_root,
128 .vfs_statfs = nfs_statfs,
129 .vfs_sync = nfs_sync,
130 .vfs_uninit = ncl_uninit,
131 .vfs_unmount = nfs_unmount,
132 .vfs_sysctl = nfs_sysctl,
133};
37
38
39#include "opt_bootp.h"
40#include "opt_nfsroot.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/kernel.h>

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

126 .vfs_cmount = nfs_cmount,
127 .vfs_root = nfs_root,
128 .vfs_statfs = nfs_statfs,
129 .vfs_sync = nfs_sync,
130 .vfs_uninit = ncl_uninit,
131 .vfs_unmount = nfs_unmount,
132 .vfs_sysctl = nfs_sysctl,
133};
134VFS_SET(nfs_vfsops, newnfs, VFCF_NETWORK);
134VFS_SET(nfs_vfsops, nfs, VFCF_NETWORK);
135
136/* So that loader and kldload(2) can find us, wherever we are.. */
137MODULE_VERSION(newnfs, 1);
138
139/*
140 * This structure is now defined in sys/nfs/nfs_diskless.c so that it
141 * can be shared by both NFS clients. It is declared here so that it
142 * will be defined for kernels built without NFS_ROOT, although it

--- 1377 unchanged lines hidden ---
135
136/* So that loader and kldload(2) can find us, wherever we are.. */
137MODULE_VERSION(newnfs, 1);
138
139/*
140 * This structure is now defined in sys/nfs/nfs_diskless.c so that it
141 * can be shared by both NFS clients. It is declared here so that it
142 * will be defined for kernels built without NFS_ROOT, although it

--- 1377 unchanged lines hidden ---