Deleted Added
full compact
nfs_clnfsiod.c (207082) nfs_clnfsiod.c (210455)
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

--- 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_syscalls.c 8.5 (Berkeley) 3/30/95
33 */
34
35#include <sys/cdefs.h>
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

--- 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_syscalls.c 8.5 (Berkeley) 3/30/95
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/fs/nfsclient/nfs_clnfsiod.c 207082 2010-04-22 23:51:01Z rmacklem $");
36__FBSDID("$FreeBSD: head/sys/fs/nfsclient/nfs_clnfsiod.c 210455 2010-07-24 22:11:11Z rmacklem $");
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/sysproto.h>
41#include <sys/kernel.h>
42#include <sys/sysctl.h>
43#include <sys/file.h>
44#include <sys/filedesc.h>

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

62
63#include <netinet/in.h>
64#include <netinet/tcp.h>
65
66#include <fs/nfs/nfsport.h>
67#include <fs/nfsclient/nfsmount.h>
68#include <fs/nfsclient/nfs.h>
69#include <fs/nfsclient/nfsnode.h>
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/sysproto.h>
41#include <sys/kernel.h>
42#include <sys/sysctl.h>
43#include <sys/file.h>
44#include <sys/filedesc.h>

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

62
63#include <netinet/in.h>
64#include <netinet/tcp.h>
65
66#include <fs/nfs/nfsport.h>
67#include <fs/nfsclient/nfsmount.h>
68#include <fs/nfsclient/nfs.h>
69#include <fs/nfsclient/nfsnode.h>
70#include <fs/nfsclient/nfs_lock.h>
71
72extern struct mtx ncl_iod_mutex;
73
74int ncl_numasync;
75enum nfsiod_state ncl_iodwant[NFS_MAXRAHEAD];
76struct nfsmount *ncl_iodmount[NFS_MAXRAHEAD];
77
78static void nfssvc_iod(void *);

--- 238 unchanged lines hidden ---
70
71extern struct mtx ncl_iod_mutex;
72
73int ncl_numasync;
74enum nfsiod_state ncl_iodwant[NFS_MAXRAHEAD];
75struct nfsmount *ncl_iodmount[NFS_MAXRAHEAD];
76
77static void nfssvc_iod(void *);

--- 238 unchanged lines hidden ---