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