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