update-openbsd-31-20020920
[openafs.git] / src / config / param.i386_obsd31.h
1 /*
2  * Jim Rees, University of Michigan CITI
3  */
4
5 #ifndef AFS_PARAM_H
6 #define AFS_PARAM_H
7
8 #ifndef IGNORE_STDS_H
9 #include <sys/param.h>
10 #include <afs/afs_sysnames.h>
11 #endif
12
13 #define AFS_XBSD_ENV 1             /* {Free,Open,Net}BSD */
14 #define AFS_X86_XBSD_ENV 1
15
16 #define AFS_NAMEI_ENV     1   /* User space interface to file system */
17 #define AFS_64BIT_IOPS_ENV 1  /* Needed for NAMEI */
18 #define AFS_OBSD_ENV    1
19 #define AFS_NONFSTRANS 1
20 #define AFS_KERBEROS_ENV 1
21 #define FTRUNC O_TRUNC
22
23 #define IUPD 0x0010
24 #define IACC 0x0020
25 #define ICHG 0x0040
26 #define IMOD 0x0080
27
28 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
29                                 NULL, curproc)
30 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
31                                 NULL, curproc)
32
33 #define AFS_VM_RDWR_ENV 0
34 #define AFS_VFS_ENV     1
35 #define AFS_VFSINCL_ENV 1
36 #define AFS_GREEDY43_ENV        1
37 #define AFS_ENV         1
38
39 #define AFS_SYSCALL     210
40 #define AFS_MOUNT_AFS   "afs"
41
42 #define SYS_NAME        "i386_obsd31"
43 #define SYS_NAME_ID     2002
44
45 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
46 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
47
48 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
49 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
50
51 #define AFSLITTLE_ENDIAN 1
52
53 /* Extra kernel definitions (from kdefs file) */
54 #ifdef _KERNEL
55 #define AFS_GLOBAL_SUNLOCK        1
56 #define AFS_VFS34       1       /* What is VFS34??? */
57 #define AFS_SHORTGID    0       /* are group id's short? */
58 #define afsio_iov       uio_iov
59 #define afsio_iovcnt    uio_iovcnt
60 #define afsio_offset    uio_offset
61 #define afsio_seg       uio_segflg
62 #define afsio_resid     uio_resid
63 #define AFS_UIOSYS      UIO_SYSSPACE
64 #define AFS_UIOUSER     UIO_USERSPACE
65 #define AFS_CLBYTES     MB_CLBYTES
66 #define osi_GetTime(x)  microtime(x)
67 #define AFS_KALLOC(x)   kalloc(x)
68 #define AFS_KFREE(x,y)  kfree(x,y)
69 #define v_count         v_usecount
70 #define v_vfsp          v_mount
71 #define vfs_bsize       mnt_stat.f_bsize
72 #define vfs_fsid        mnt_stat.f_fsid
73 #define va_nodeid       va_fileid
74 #define vfs_vnodecovered mnt_vnodecovered
75 #define vnode_t         struct vnode
76 #define setgroups       sys_setgroups
77
78 #ifndef MUTEX_DEFAULT
79 #define MUTEX_DEFAULT   0
80 #endif /* MUTEX_DEFAULT */
81
82 #ifndef SSYS
83 #define SSYS            0x00002
84 #endif /* SSYS */
85
86 #define p_rcred         p_ucred
87
88 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
89 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
90
91 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
92 enum vcexcl {NONEXCL, EXCL};
93
94 #ifdef KERNEL
95 #ifndef MIN
96 #define MIN(A,B) ((A) < (B) ? (A) : (B))
97 #endif
98 #ifndef MAX
99 #define MAX(A,B) ((A) > (B) ? (A) : (B))
100 #endif
101 #endif /* KERNEL */
102
103 #endif  /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
104 #endif /* _KERNEL */
105
106 #endif  /* AFS_PARAM_H */