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