645efc437ef35e987be7ea5cc54300ed865782dd
[openafs.git] / src / config / param.i386_fbsd_45.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_X86_FBSD_ENV 1
24 #define AFS_X86_FBSD40_ENV 1
25 #define AFS_X86_FBSD42_ENV 1
26 #define AFS_X86_FBSD43_ENV 1
27 #define AFS_X86_FBSD45_ENV 1
28 #define AFS_X86_ENV 1
29 #define AFS_NONFSTRANS 1
30 #define O_SYNC O_FSYNC
31 #define FTRUNC O_TRUNC
32
33 #define IUPD 0x0010
34 #define IACC 0x0020
35 #define ICHG 0x0040
36 #define IMOD 0x0080
37
38 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
39                                 NULL, curproc)
40 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
41                                 NULL, curproc)
42
43 #include <afs/afs_sysnames.h>
44
45 #define AFS_VM_RDWR_ENV 1
46 #define AFS_VFS_ENV     1
47 #define AFS_VFSINCL_ENV 1
48 #define AFS_GREEDY43_ENV        1
49 #define AFS_ENV         1
50
51 #define AFS_SYSCALL     210
52 #define AFS_MOUNT_AFS   "afs"
53
54 #ifndef MOUNT_UFS
55 #define MOUNT_UFS "ufs"
56 #endif
57
58 #ifndef MOUNT_AFS
59 #define MOUNT_AFS AFS_MOUNT_AFS
60 #endif
61 #define SYS_NAME        "i386_fbsd_45"
62 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_45
63
64 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
65 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
66
67 #define RXK_LISTENER_ENV 1
68 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
69 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
70
71 #define AFSLITTLE_ENDIAN 1
72
73 /* Extra kernel definitions (from kdefs file) */
74 #ifdef _KERNEL
75 #define AFS_GLOBAL_SUNLOCK        1
76 #define AFS_VFS34       1       /* What is VFS34??? */
77 #define AFS_SHORTGID    1       /* are group id's short? */
78 #define afsio_iov       uio_iov
79 #define afsio_iovcnt    uio_iovcnt
80 #define afsio_offset    uio_offset
81 #define afsio_seg       uio_segflg
82 #define afsio_resid     uio_resid
83 #define AFS_UIOSYS      UIO_SYSSPACE
84 #define AFS_UIOUSER     UIO_USERSPACE
85 #define AFS_CLBYTES     CLBYTES
86 #define osi_GetTime(x)  microtime(x)
87 #define AFS_KALLOC(x)   malloc(x, M_AFS, M_WAITOK)
88 #define AFS_KFREE(x,y)  free(x,M_AFS)
89 #define v_count         v_usecount
90 #define v_vfsp          v_mount
91 #define vfs_bsize       mnt_stat.f_bsize
92 #define vfs_fsid        mnt_stat.f_fsid
93 #define va_nodeid       va_fileid
94 #define vfs_vnodecovered mnt_vnodecovered
95 #define direct          dirent
96 #define vnode_t         struct vnode
97
98 #ifndef MUTEX_DEFAULT
99 #define MUTEX_DEFAULT   0
100 #endif /* MUTEX_DEFAULT */
101
102 #ifndef SSYS
103 #define SSYS            0x00002
104 #endif /* SSYS */
105
106 #define p_rcred         p_ucred
107
108 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
109 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
110
111 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
112 enum vcexcl { NONEXCL, EXCL };
113
114 #ifdef KERNEL
115 #ifndef MIN
116 #define MIN(A,B) ((A) < (B) ? (A) : (B))
117 #endif
118 #ifndef MAX
119 #define MAX(A,B) ((A) > (B) ? (A) : (B))
120 #endif
121 #endif /* KERNEL */
122
123 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
124 #endif /* _KERNEL */
125
126 #endif /* AFS_PARAM_H */
127
128 #else /* !defined(UKERNEL) */
129
130 /* This section for user space compiles only */
131
132 #ifndef AFS_PARAM_H
133 #define AFS_PARAM_H
134
135
136 #define UKERNEL                 1       /* user space kernel */
137 #define AFS_ENV                 1
138 #define AFS_VFSINCL_ENV         1
139 #define AFS_USR_FBSD40_ENV      1
140 #define AFS_USR_FBSD42_ENV      1
141 #define AFS_USR_FBSD43_ENV      1
142 #define AFS_USR_FBSD44_ENV      1
143 #define AFS_USR_FBSD45_ENV      1
144 #define AFS_USR_FBSD_ENV        1
145 #define AFS_NONFSTRANS 1
146
147 #define O_SYNC O_FSYNC
148
149 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
150 #define AFS_SYSCALL 210
151 #define AFS_NAMEI_ENV         1 /* User space interface to file system */
152 #define AFS_64BIT_ENV 1
153 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
154 #include <afs/afs_sysnames.h>
155
156 #define AFS_USERSPACE_IP_ADDR 1
157 #define RXK_LISTENER_ENV      1
158 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
159
160 /* Machine / Operating system information */
161 #define SYS_NAME        "i386_fbsd_45"
162 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_45
163 #define AFSLITTLE_ENDIAN    1
164 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
165 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
166 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
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 <limits.h>
186 #include <sys/param.h>
187 #include <sys/types.h>
188 #include <sys/mount.h>
189 #include <sys/fcntl.h>
190 #include <netinet/in.h>
191 #include <sys/uio.h>
192 #include <sys/socket.h>
193
194 #endif /* AFS_PARAM_H */
195
196 #endif /* !defined(UKERNEL) */