Catch up on FBSD releases
[openafs.git] / src / config / param.amd64_fbsd_82.h
1 #ifndef AFS_PARAM_H
2 #define AFS_PARAM_H
3
4 /* Machine / Operating system information */
5 #define SYS_NAME        "amd64_fbsd_82"
6 #define SYS_NAME_ID     SYS_NAME_ID_amd64_fbsd_82
7
8 #define AFSLITTLE_ENDIAN    1
9 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
10 #define AFS_HAVE_STATVFS    1   /* System doesn't support statvfs */
11 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
12
13
14 #ifndef UKERNEL
15 /* This section for kernel libafs compiles only */
16
17 #ifndef IGNORE_STDS_H
18 #include <sys/param.h>
19 #endif
20
21 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
22 #define AFS_X86_XBSD_ENV 1
23
24 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
25 #define AFS_64BIT_CLIENT 1
26 #define AFS_64BITPOINTER_ENV 1
27 #define AFS_64BITUSERPOINTER_ENV        1
28 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
29 #define AFS_FBSD_ENV 1
30 #define AFS_FBSD50_ENV 1
31 #define AFS_FBSD51_ENV 1
32 #define AFS_FBSD52_ENV 1
33 #define AFS_FBSD53_ENV 1
34 #define AFS_FBSD60_ENV 1
35 #define AFS_FBSD61_ENV 1
36 #define AFS_FBSD62_ENV 1
37 #define AFS_FBSD70_ENV 1
38 #define AFS_FBSD71_ENV 1
39 #define AFS_FBSD80_ENV 1
40 #define AFS_FBSD81_ENV 1
41 #define AFS_FBSD82_ENV 1
42 #define AFS_X86_FBSD_ENV 1
43 #define AFS_X86_FBSD50_ENV 1
44 #define AFS_X86_FBSD60_ENV 1 /* added at 70--ie, some changes should port <-- */
45 #define AFS_X86_FBSD62_ENV 1
46 #define AFS_X86_FBSD70_ENV 1
47 #define AFS_X86_FBSD71_ENV 1
48 #define AFS_X86_FBSD80_ENV 1
49 #define AFS_X86_FBSD81_ENV 1
50 #define AFS_X86_FBSD82_ENV 1
51 #define AFS_X86_ENV 1
52 #undef  AFS_NONFSTRANS
53 #define AFS_NONFSTRANS 1
54 #define FTRUNC O_TRUNC
55
56 #define IUPD 0x0010
57 #define IACC 0x0020
58 #define ICHG 0x0040
59 #define IMOD 0x0080
60
61 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
62                                 NULL, curproc)
63 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
64                                 NULL, curproc)
65
66 #include <afs/afs_sysnames.h>
67
68 #define AFS_VFS_ENV     1
69 #define AFS_VFSINCL_ENV 1
70 #define AFS_GREEDY43_ENV        1
71 #define AFS_ENV         1
72
73 #define AFS_SYSCALL     339
74 #define AFS_MOUNT_AFS   "afs"
75
76 #ifndef MOUNT_UFS
77 #define MOUNT_UFS "ufs"
78 #endif
79
80 #ifndef MOUNT_AFS
81 #define MOUNT_AFS AFS_MOUNT_AFS
82 #endif
83
84 #define RXK_LISTENER_ENV 1
85 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
86 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
87
88 /* Extra kernel definitions (from kdefs file) */
89 #ifdef _KERNEL
90 #define AFS_GLOBAL_SUNLOCK        1
91 #define AFS_VFS34       1       /* What is VFS34??? */
92 #define AFS_SHORTGID    0       /* are group id's short? */
93 #define afsio_iov       uio_iov
94 #define afsio_iovcnt    uio_iovcnt
95 #define afsio_offset    uio_offset
96 #define afsio_seg       uio_segflg
97 #define afsio_resid     uio_resid
98 #define AFS_UIOSYS      UIO_SYSSPACE
99 #define AFS_UIOUSER     UIO_USERSPACE
100 #define AFS_CLBYTES     CLBYTES
101 #define osi_GetTime(x)  microtime(x)
102 #define AFS_KALLOC(x)   osi_fbsd_alloc((x), 1)
103 #undef  AFS_KALLOC_NOSLEEP
104 #define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0)
105 #define AFS_KFREE(x,y)  osi_fbsd_free((x))
106 #define v_count         v_usecount
107 #define v_vfsp          v_mount
108 #define vfs_bsize       mnt_stat.f_bsize
109 #define vfs_fsid        mnt_stat.f_fsid
110 #define va_nodeid       va_fileid
111 #define vfs_vnodecovered mnt_vnodecovered
112 #define direct          dirent
113 #define vnode_t         struct vnode
114
115 #ifndef MUTEX_DEFAULT
116 #define MUTEX_DEFAULT   0
117 #endif /* MUTEX_DEFAULT */
118
119 #ifndef SSYS
120 #define SSYS            0x00002
121 #endif /* SSYS */
122
123 #define p_rcred         p_ucred
124
125 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
126 enum vcexcl { NONEXCL, EXCL };
127
128 #ifdef KERNEL
129 #ifndef MIN
130 #define MIN(A,B) ((A) < (B) ? (A) : (B))
131 #endif
132 #ifndef MAX
133 #define MAX(A,B) ((A) > (B) ? (A) : (B))
134 #endif
135 #endif /* KERNEL */
136
137 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
138 #endif /* _KERNEL */
139
140 #else /* !defined(UKERNEL) */
141
142 /* This section for user space compiles only */
143
144 #define UKERNEL                 1       /* user space kernel */
145 #define AFS_ENV                 1
146 #define AFS_VFSINCL_ENV         1
147 #define AFS_USR_FBSD50_ENV      1
148 #define AFS_USR_FBSD51_ENV      1
149 #define AFS_USR_FBSD52_ENV      1
150 #define AFS_USR_FBSD53_ENV      1
151 #define AFS_USR_FBSD60_ENV      1
152 #define AFS_USR_FBSD61_ENV      1
153 #define AFS_USR_FBSD70_ENV      1
154 #define AFS_USR_FBSD71_ENV      1
155 #define AFS_USR_FBSD80_ENV      1
156 #define AFS_USR_FBSD81_ENV      1
157 #define AFS_USR_FBSD82_ENV      1
158 #define AFS_USR_FBSD_ENV        1
159 #undef  AFS_NONFSTRANS
160 #define AFS_NONFSTRANS 1
161
162 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
163 #define AFS_SYSCALL 339
164 #define AFS_NAMEI_ENV         1 /* User space interface to file system */
165 #define AFS_64BITPOINTER_ENV  1
166 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
167 #define AFS_USERSPACE_IP_ADDR 1
168 #define RXK_LISTENER_ENV      1
169 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
170
171 #include <afs/afs_sysnames.h>
172
173 #define afsio_iov       uio_iov
174 #define afsio_iovcnt    uio_iovcnt
175 #define afsio_offset    uio_offset
176 #define afsio_seg       uio_segflg
177 #define afsio_fmode     uio_fmode
178 #define afsio_resid     uio_resid
179 #define AFS_UIOSYS      1
180 #define AFS_UIOUSER     UIO_USERSPACE
181 #define AFS_CLBYTES     MCLBYTES
182 #define AFS_MINCHANGE   2
183 #define VATTR_NULL      usr_vattr_null
184
185 #define AFS_DIRENT
186 #ifndef CMSERVERPREF
187 #define CMSERVERPREF
188 #endif
189
190 #include <sys/param.h>
191 #include <sys/types.h>
192 #include <sys/mount.h>
193 #include <sys/fcntl.h>
194 #include <sys/uio.h>
195 #include <sys/socket.h>
196 #include <netinet/in.h>
197 #include <limits.h>
198
199 #endif /* !defined(UKERNEL) */
200
201 /* general user-space compiles */
202
203 #if defined(UKERNEL) || !defined(KERNEL)
204 #define STDLIB_HAS_MALLOC_PROTOS 1
205 #endif
206
207 #endif /* AFS_PARAM_H */