Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / config / param.nbsd21.h
1 /* NetBSD shared section */
2
3 #ifndef AFS_PARAM_COMMON_H
4 #define AFS_PARAM_COMMON_H 1
5
6 #define AFS_NAMEI_ENV 1 /* User space interface to file system */
7 #define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */
8 #define AFS_64BIT_CLIENT 1
9
10 #define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */
11 #define AFS_SYSCALL 210
12
13 #ifndef MOUNT_AFS
14 #define MOUNT_AFS AFS_MOUNT_AFS
15 #endif
16
17 #define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */
18
19 #define AFS_NBSD_ENV 1
20 #define AFS_NBSD15_ENV 1
21 #define AFS_NBSD16_ENV 1
22 #define AFS_NBSD20_ENV 1
23 #undef AFS_NONFSTRANS
24 #define AFS_NONFSTRANS 1
25 #define AFS_KERBEROS_ENV 1
26
27 #define AFS_VFSINCL_ENV 1
28
29 #define AFS_HAVE_FFS 1 /* Use system's ffs. */
30
31 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
32 #if __NetBSD_Version__ >= 299000900
33 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */
34 #else
35 #define AFS_HAVE_STATVFS 0 /* System doesn't supports statvfs */
36 #endif
37 #endif
38
39 #ifndef UKERNEL
40
41 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
42 #include <sys/param.h>
43 #endif
44
45 #define FTRUNC O_TRUNC
46
47 #define IUPD 0x0010
48 #define IACC 0x0020
49 #define ICHG 0x0040
50 #define IMOD 0x0080
51
52 #define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
53 NULL, curproc)
54 #define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \
55 NULL, curproc)
56
57 #include <afs/afs_sysnames.h>
58
59 #define AFS_VFS_ENV 1
60 #define AFS_GREEDY43_ENV 1
61
62 #define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
63 #define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */
64
65 /* Extra kernel definitions (from kdefs file) */
66 #ifdef _KERNEL
67 #define AFS_GLOBAL_SUNLOCK 1
68 #define AFS_VFS34 1 /* What is VFS34??? */
69 #define afsio_iov uio_iov
70 #define afsio_iovcnt uio_iovcnt
71 #define afsio_offset uio_offset
72 #define afsio_seg uio_segflg
73 #define afsio_resid uio_resid
74 #define AFS_UIOSYS UIO_SYSSPACE
75 #define AFS_UIOUSER UIO_USERSPACE
76 #define AFS_CLBYTES CLBYTES
77 #define osi_GetTime(x) microtime(x)
78 #define AFS_KALLOC(x) kalloc(x)
79 #define AFS_KFREE(x,y) kfree(x,y)
80 #define v_count v_usecount
81 #define v_vfsp v_mount
82 #define vfs_bsize mnt_stat.f_bsize
83 #define vfs_fsid mnt_stat.f_fsid
84 #define va_nodeid va_fileid
85 #define vfs_vnodecovered mnt_vnodecovered
86 #define direct dirent
87 #define vnode_t struct vnode
88
89 #ifndef MUTEX_DEFAULT
90 #define MUTEX_DEFAULT 0
91 #endif /* MUTEX_DEFAULT */
92
93 #ifndef SSYS
94 #define SSYS 0x00002
95 #endif /* SSYS */
96
97 #define p_rcred p_ucred
98
99 #define VN_RELE(vp) vrele(((struct vnode *)(vp)))
100 #define VN_HOLD(vp) VREF(((struct vnode *)(vp)))
101
102 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
103 enum vcexcl { NONEXCL, EXCL };
104
105 #ifdef KERNEL
106 #ifndef MIN
107 #define MIN(A,B) ((A) < (B) ? (A) : (B))
108 #endif
109 #ifndef MAX
110 #define MAX(A,B) ((A) > (B) ? (A) : (B))
111 #endif
112 #endif /* KERNEL */
113
114 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ && !defined(IGNORE_STDS_H) */
115 #endif /* _KERNEL */
116
117 #else /* !defined(UKERNEL) */
118
119
120 /* This section for user space compiles only */
121
122 #define UKERNEL 1 /* user space kernel */
123
124 #include <afs/afs_sysnames.h>
125
126 #define AFS_USERSPACE_IP_ADDR 1
127 #define RXK_LISTENER_ENV 1
128 #define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
129
130 #define afsio_iov uio_iov
131 #define afsio_iovcnt uio_iovcnt
132 #define afsio_offset uio_offset
133 #define afsio_seg uio_segflg
134 #define afsio_fmode uio_fmode
135 #define afsio_resid uio_resid
136 #define AFS_UIOSYS UIO_SYSSPACE
137 #define AFS_UIOUSER UIO_USERSPACE
138 #define AFS_CLBYTES MCLBYTES
139 #define AFS_MINCHANGE 2
140 #define VATTR_NULL usr_vattr_null
141
142 #define AFS_DIRENT
143 #ifndef CMSERVERPREF
144 #define CMSERVERPREF
145 #endif
146
147 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
148 #include <limits.h>
149 #include <sys/param.h>
150 #include <sys/types.h>
151 #include <sys/mount.h>
152 #include <sys/fcntl.h>
153 #include <netinet/in.h>
154 #include <sys/uio.h>
155 #include <sys/socket.h>
156 #endif
157
158 #endif /* !defined(UKERNEL) */
159
160 #endif /* AFS_PARAM_COMMON_H */