venus: Remove dedebug
[openafs.git] / src / config / param.nbsd15.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
3
4
5 #ifndef AFS_PARAM_COMMON_H
6 #define AFS_PARAM_COMMON_H
7
8 #ifndef ASSEMBLER
9 #include <sys/param.h>
10 #endif
11
12 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
13
14 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
15 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
16 #define AFS_NBSD_ENV 1
17 #define AFS_NBSD15_ENV 1
18 #undef  AFS_NONFSTRANS
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 #include <afs/afs_sysnames.h>
34
35 #define AFS_VFS_ENV     1
36 #define AFS_VFSINCL_ENV 1
37 #define AFS_GREEDY43_ENV        1
38 #define AFS_ENV         1
39
40 #define AFS_SYSCALL 210
41
42
43 #ifndef MOUNT_UFS
44 #define MOUNT_UFS "ufs"
45 #endif
46
47 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
48 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
49
50 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
51 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
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 afsio_iov       uio_iov
58 #define afsio_iovcnt    uio_iovcnt
59 #define afsio_offset    uio_offset
60 #define afsio_seg       uio_segflg
61 #define afsio_resid     uio_resid
62 #define AFS_UIOSYS      UIO_SYSSPACE
63 #define AFS_UIOUSER     UIO_USERSPACE
64 #define AFS_CLBYTES     CLBYTES
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 */
105
106 #else /* !defined(UKERNEL) */
107
108 /* This section for user space compiles only */
109
110
111 #endif /* !defined(UKERNEL) */