afsd-allow-maxmtu-override-20090530
[openafs.git] / src / config / param.i386_fbsd_52.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_CLIENT 1
17 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
18 #define AFS_FBSD_ENV 1
19 #define AFS_FBSD40_ENV 1
20 #define AFS_FBSD42_ENV 1
21 #define AFS_FBSD43_ENV 1
22 #define AFS_FBSD44_ENV 1
23 #define AFS_FBSD45_ENV 1
24 #define AFS_FBSD46_ENV 1
25 #define AFS_FBSD47_ENV 1
26 #define AFS_FBSD50_ENV 1
27 #define AFS_FBSD51_ENV 1
28 #define AFS_FBSD52_ENV 1
29 #define AFS_X86_FBSD_ENV 1
30 #define AFS_X86_FBSD40_ENV 1
31 #define AFS_X86_FBSD42_ENV 1
32 #define AFS_X86_FBSD43_ENV 1
33 #define AFS_X86_FBSD46_ENV 1
34 #define AFS_X86_FBSD47_ENV 1
35 #define AFS_X86_FBSD50_ENV 1
36 #define AFS_X86_ENV 1
37 #define AFS_NONFSTRANS 1
38 #define FTRUNC O_TRUNC
39
40 #define IUPD 0x0010
41 #define IACC 0x0020
42 #define ICHG 0x0040
43 #define IMOD 0x0080
44
45 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
46                                 NULL, curproc)
47 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
48                                 NULL, curproc)
49
50 #include <afs/afs_sysnames.h>
51
52 #define AFS_VM_RDWR_ENV 1
53 #define AFS_VFS_ENV     1
54 #define AFS_VFSINCL_ENV 1
55 #define AFS_GREEDY43_ENV        1
56 #define AFS_ENV         1
57
58 #define AFS_SYSCALL     339
59 #define AFS_MOUNT_AFS   "afs"
60
61 #ifndef MOUNT_UFS
62 #define MOUNT_UFS "ufs"
63 #endif
64
65 #ifndef MOUNT_AFS
66 #define MOUNT_AFS AFS_MOUNT_AFS
67 #endif
68 #define SYS_NAME        "i386_fbsd_52"
69 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_52
70
71 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
72 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
73
74 #define RXK_LISTENER_ENV 1
75 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
76 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
77
78 #define AFSLITTLE_ENDIAN 1
79
80 /* Extra kernel definitions (from kdefs file) */
81 #ifdef _KERNEL
82 #define AFS_GLOBAL_SUNLOCK        1
83 #define AFS_VFS34       1       /* What is VFS34??? */
84 #define AFS_SHORTGID    0       /* are group id's short? */
85 #define afsio_iov       uio_iov
86 #define afsio_iovcnt    uio_iovcnt
87 #define afsio_offset    uio_offset
88 #define afsio_seg       uio_segflg
89 #define afsio_resid     uio_resid
90 #define AFS_UIOSYS      UIO_SYSSPACE
91 #define AFS_UIOUSER     UIO_USERSPACE
92 #define AFS_CLBYTES     CLBYTES
93 #define osi_GetTime(x)  microtime(x)
94 #define AFS_KALLOC(x)   osi_fbsd_alloc((x), 1)
95 #undef  AFS_KALLOC_NOSLEEP
96 #define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0)
97 #define AFS_KFREE(x,y)  osi_fbsd_free((x))
98 #define v_count         v_usecount
99 #define v_vfsp          v_mount
100 #define vfs_bsize       mnt_stat.f_bsize
101 #define vfs_fsid        mnt_stat.f_fsid
102 #define va_nodeid       va_fileid
103 #define vfs_vnodecovered mnt_vnodecovered
104 #define direct          dirent
105 #define vnode_t         struct vnode
106
107 #ifndef MUTEX_DEFAULT
108 #define MUTEX_DEFAULT   0
109 #endif /* MUTEX_DEFAULT */
110
111 #ifndef SSYS
112 #define SSYS            0x00002
113 #endif /* SSYS */
114
115 #define p_rcred         p_ucred
116
117 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
118 enum vcexcl { NONEXCL, EXCL };
119
120 #ifdef KERNEL
121 #ifndef MIN
122 #define MIN(A,B) ((A) < (B) ? (A) : (B))
123 #endif
124 #ifndef MAX
125 #define MAX(A,B) ((A) > (B) ? (A) : (B))
126 #endif
127 #endif /* KERNEL */
128
129 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
130 #endif /* _KERNEL */
131
132 #endif /* AFS_PARAM_H */
133
134 #else /* !defined(UKERNEL) */
135
136 /* This section for user space compiles only */
137
138 #ifndef AFS_PARAM_H
139 #define AFS_PARAM_H
140
141
142 #define UKERNEL                 1       /* user space kernel */
143 #define AFS_ENV                 1
144 #define AFS_VFSINCL_ENV         1
145 #define AFS_USR_FBSD40_ENV      1
146 #define AFS_USR_FBSD42_ENV      1
147 #define AFS_USR_FBSD43_ENV      1
148 #define AFS_USR_FBSD44_ENV      1
149 #define AFS_USR_FBSD45_ENV      1
150 #define AFS_USR_FBSD46_ENV      1
151 #define AFS_USR_FBSD47_ENV      1
152 #define AFS_USR_FBSD50_ENV      1
153 #define AFS_USR_FBSD51_ENV      1
154 #define AFS_USR_FBSD52_ENV      1
155 #define AFS_USR_FBSD_ENV        1
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_ENV 1
162 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
163 #include <afs/afs_sysnames.h>
164
165 #define AFS_USERSPACE_IP_ADDR 1
166 #define RXK_LISTENER_ENV      1
167 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
168
169 /* Machine / Operating system information */
170 #define SYS_NAME        "i386_fbsd_52"
171 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_52
172 #define AFSLITTLE_ENDIAN    1
173 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
174 #define AFS_HAVE_STATVFS    1   /* System doesn't support statvfs */
175 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
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 <limits.h>
195 #include <sys/param.h>
196 #include <sys/types.h>
197 #include <sys/mount.h>
198 #include <sys/fcntl.h>
199 #include <netinet/in.h>
200 #include <sys/uio.h>
201 #include <sys/socket.h>
202
203 #endif /* AFS_PARAM_H */
204
205 #endif /* !defined(UKERNEL) */