venus: Remove dedebug
[openafs.git] / src / config / param.nbsd60.h
1 /* NetBSD shared section */
2
3 #ifndef AFS_PARAM_COMMON_H
4 #define AFS_PARAM_COMMON_H 1
5
6 #define AFS_NAMEI_ENV  1        /* User space interface to file system */
7 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
8 #define AFS_64BIT_CLIENT 1
9
10 #define AFS_SYSCALL 210
11
12 #define AFS_KALLOC(n)           kmem_alloc(n, KM_SLEEP)
13 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
14 #define AFS_KFREE               kmem_free
15 #define VATTR_NULL              vattr_null
16
17 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
18
19 #define AFS_NBSD_ENV 1
20 #define AFS_NBSD15_ENV 1
21 #define AFS_NBSD16_ENV 1
22 #define AFS_NBSD20_ENV 1
23 #define AFS_NBSD30_ENV 1
24 #define AFS_NBSD40_ENV 1
25 #define AFS_NBSD50_ENV 1
26 #define AFS_NBSD60_ENV 1
27 #undef  AFS_NONFSTRANS
28 #define AFS_NONFSTRANS 1
29
30 #define AFS_VFSINCL_ENV 1
31
32 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
33
34 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
35 #define AFS_HAVE_STATVFS    1   /* System supports statvfs */
36 #endif
37
38 #ifndef UKERNEL
39
40 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
41 #include <sys/param.h>
42 #endif
43
44 #define FTRUNC O_TRUNC
45
46 #define IUPD 0x0010
47 #define IACC 0x0020
48 #define ICHG 0x0040
49 #define IMOD 0x0080
50
51 #define RXK_LISTENER_ENV  1
52
53 #include <afs/afs_sysnames.h>
54
55 #define AFS_VFS_ENV     1
56 #define AFS_GREEDY43_ENV        1
57
58 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
59 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
60 #define AFS_GLOBAL_SUNLOCK      1
61
62 /* Extra kernel definitions (from kdefs file) */
63 #ifdef _KERNEL_DEPRECATED
64 #define AFS_VFS34       1       /* What is VFS34??? */
65 #define afsio_iov       uio_iov
66 #define afsio_iovcnt    uio_iovcnt
67 #define afsio_offset    uio_offset
68 #define afsio_seg       uio_segflg
69 #define afsio_resid     uio_resid
70 #define AFS_UIOSYS      UIO_SYSSPACE
71 #define AFS_UIOUSER     UIO_USERSPACE
72 #define AFS_CLBYTES     CLBYTES
73 #define AFS_KALLOC(x)   kalloc(x)
74 #define AFS_KFREE(x,y)  kfree(x,y)
75 #define v_count         v_usecount
76 #define v_vfsp          v_mount
77 #define vfs_bsize       mnt_stat.f_bsize
78 #define vfs_fsid        mnt_stat.f_fsid
79 #define va_nodeid       va_fileid
80 #define vfs_vnodecovered mnt_vnodecovered
81 #define direct          dirent
82
83 #ifndef MUTEX_DEFAULT
84 #define MUTEX_DEFAULT   0
85 #endif /* MUTEX_DEFAULT */
86
87 #ifndef SSYS
88 #define SSYS            0x00002
89 #endif /* SSYS */
90
91 #define p_rcred         p_ucred
92
93 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
94 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
95
96 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
97 enum vcexcl { NONEXCL, EXCL };
98
99 #ifdef KERNEL
100 #ifndef MIN
101 #define MIN(A,B) ((A) < (B) ? (A) : (B))
102 #endif
103 #ifndef MAX
104 #define MAX(A,B) ((A) > (B) ? (A) : (B))
105 #endif
106 #endif /* KERNEL */
107
108 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ && !defined(IGNORE_STDS_H) */
109 #endif /* _KERNEL_DEPRECATED */
110
111 #else /* !defined(UKERNEL) */
112
113
114 /* This section for user space compiles only */
115
116 #define UKERNEL                 1       /* user space kernel */
117
118 #include <afs/afs_sysnames.h>
119
120 #define AFS_USERSPACE_IP_ADDR 1
121 #define RXK_LISTENER_ENV      1
122 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
123
124 #define afsio_iov       uio_iov
125 #define afsio_iovcnt    uio_iovcnt
126 #define afsio_offset    uio_offset
127 #define afsio_seg       uio_segflg
128 #define afsio_fmode     uio_fmode
129 #define afsio_resid     uio_resid
130 #define AFS_UIOSYS      UIO_SYSSPACE
131 #define AFS_UIOUSER     UIO_USERSPACE
132 #define AFS_CLBYTES     MCLBYTES
133 #define AFS_MINCHANGE   2
134 #define VATTR_NULL      usr_vattr_null
135
136 #define AFS_DIRENT
137 #ifndef CMSERVERPREF
138 #define CMSERVERPREF
139 #endif
140
141 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H) && !defined()
142 #include <limits.h>
143 #include <sys/param.h>
144 #include <sys/types.h>
145 #include <sys/mount.h>
146 #include <sys/fcntl.h>
147 #include <netinet/in.h>
148 #include <sys/uio.h>
149 #include <sys/socket.h>
150 #endif
151
152 #endif /* !defined(UKERNEL) */
153
154 #endif /* AFS_PARAM_COMMON_H */