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