f49c2821f619e3e8fec9a49e812f6b2fa213c25a
[openafs.git] / src / config / param.nbsd15.h
1
2 #ifndef AFS_PARAM_COMMON_H
3 #define AFS_PARAM_COMMON_H
4
5 #include <sys/param.h>
6
7 #define AFS_XBSD_ENV 1             /* {Free,Open,Net}BSD */
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_NONFSTRANS 1
14 #define AFS_KERBEROS_ENV 1
15 #define FTRUNC O_TRUNC
16
17 #define IUPD 0x0010
18 #define IACC 0x0020
19 #define ICHG 0x0040
20 #define IMOD 0x0080
21
22 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
23                                 (struct simplelock *)0, curproc)
24 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
25                                 (struct simplelock *)0, curproc)
26
27 #include <afs/afs_sysnames.h>
28
29 #define AFS_VM_RDWR_ENV 1
30 #define AFS_VFS_ENV     1
31 #define AFS_VFSINCL_ENV 1
32 #define AFS_GREEDY43_ENV        1
33 #define AFS_ENV         1
34
35 #define AFS_MOUNT_AFS   "afs"
36
37 #ifndef MOUNT_UFS
38 #define MOUNT_UFS "ufs"
39 #endif
40
41 #ifndef MOUNT_AFS
42 #define MOUNT_AFS AFS_MOUNT_AFS
43 #endif
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 /* Extra kernel definitions (from kdefs file) */
52 #ifdef _KERNEL
53 #define AFS_GLOBAL_SUNLOCK        1
54 #define AFS_VFS34       1       /* What is VFS34??? */
55 #define AFS_SHORTGID    1       /* are group id's short? */
56 #define afsio_iov       uio_iov
57 #define afsio_iovcnt    uio_iovcnt
58 #define afsio_offset    uio_offset
59 #define afsio_seg       uio_segflg
60 #define afsio_resid     uio_resid
61 #define AFS_UIOSYS      UIO_SYSSPACE
62 #define AFS_UIOUSER     UIO_USERSPACE
63 #define AFS_CLBYTES     CLBYTES
64 #define osi_GetTime(x)  microtime(x)
65 #define AFS_KALLOC(x)   kalloc(x)
66 #define AFS_KFREE(x,y)  kfree(x,y)
67 #define v_count         v_usecount
68 #define v_vfsp          v_mount
69 #define vfs_bsize       mnt_stat.f_bsize
70 #define vfs_fsid        mnt_stat.f_fsid
71 #define va_nodeid       va_fileid
72 #define vfs_vnodecovered mnt_vnodecovered
73 #define direct          dirent
74 #define vnode_t         struct vnode
75
76 #ifndef MUTEX_DEFAULT
77 #define MUTEX_DEFAULT   0
78 #endif /* MUTEX_DEFAULT */
79
80 #ifndef SSYS
81 #define SSYS            0x00002
82 #endif /* SSYS */
83
84 #define p_rcred         p_ucred
85
86 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
87 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
88
89 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
90 enum vcexcl {NONEXCL, EXCL};
91
92 #ifdef KERNEL
93 #ifndef MIN
94 #define MIN(A,B) ((A) < (B) ? (A) : (B))
95 #endif
96 #ifndef MAX
97 #define MAX(A,B) ((A) > (B) ? (A) : (B))
98 #endif
99 #endif /* KERNEL */
100
101 #endif  /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
102 #endif /* _KERNEL */
103
104 #endif  /* AFS_PARAM_COMMON_H */