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