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