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