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