Deleted Added
full compact
nfsargs.h (86284) nfsargs.h (122698)
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.h 8.4 (Berkeley) 5/1/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.h 8.4 (Berkeley) 5/1/95
37 * $FreeBSD: head/sys/nfsclient/nfsargs.h 86284 2001-11-12 02:33:52Z alfred $
37 * $FreeBSD: head/sys/nfsclient/nfsargs.h 122698 2003-11-14 20:54:10Z alfred $
38 */
39
40#ifndef _NFSCLIENT_NFSARGS_H_
41#define _NFSCLIENT_NFSARGS_H_
42
43/*
44 * Arguments to mount NFS
45 */

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

90#define NFSMNT_RESVPORT 0x00008000 /* Allocate a reserved port */
91#define NFSMNT_RDIRPLUS 0x00010000 /* Use Readdirplus for V3 */
92#define NFSMNT_READDIRSIZE 0x00020000 /* Set readdir size */
93#define NFSMNT_ACREGMIN 0x00040000
94#define NFSMNT_ACREGMAX 0x00080000
95#define NFSMNT_ACDIRMIN 0x00100000
96#define NFSMNT_ACDIRMAX 0x00200000
97#define NFSMNT_NOLOCKD 0x00400000 /* Locks are local */
38 */
39
40#ifndef _NFSCLIENT_NFSARGS_H_
41#define _NFSCLIENT_NFSARGS_H_
42
43/*
44 * Arguments to mount NFS
45 */

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

90#define NFSMNT_RESVPORT 0x00008000 /* Allocate a reserved port */
91#define NFSMNT_RDIRPLUS 0x00010000 /* Use Readdirplus for V3 */
92#define NFSMNT_READDIRSIZE 0x00020000 /* Set readdir size */
93#define NFSMNT_ACREGMIN 0x00040000
94#define NFSMNT_ACREGMAX 0x00080000
95#define NFSMNT_ACDIRMIN 0x00100000
96#define NFSMNT_ACDIRMAX 0x00200000
97#define NFSMNT_NOLOCKD 0x00400000 /* Locks are local */
98#define NFSMNT_NFSV4 0x00800000 /* Use NFS Version 4 protocol */
99#define NFSMNT_HASWRITEVERF 0x01000000 /* NFSv4 Write verifier */
98
99#endif
100
101#endif