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