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