Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / config / param.nbsd30.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_MOUNT_AFS "afs" /* The name of the filesystem type. */
11 #define AFS_SYSCALL 210
12
13 #ifndef MOUNT_AFS
14 #define MOUNT_AFS AFS_MOUNT_AFS
15 #endif
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 #undef AFS_NONFSTRANS
25 #define AFS_NONFSTRANS 1
26
27 #define AFS_VFSINCL_ENV 1
28
29 #define AFS_HAVE_FFS 1 /* Use system's ffs. */
30
31 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
32 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */
33 #endif
34
35 #ifndef UKERNEL
36
37 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
38 #include <sys/param.h>
39 #endif
40
41 #define FTRUNC O_TRUNC
42
43 #define IUPD 0x0010
44 #define IACC 0x0020
45 #define ICHG 0x0040
46 #define IMOD 0x0080
47
48 #define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
49 NULL, curproc)
50 #define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \
51 NULL, curproc)
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
61 /* Extra kernel definitions (from kdefs file) */
62 #ifdef _KERNEL
63 #define AFS_GLOBAL_SUNLOCK 1
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 osi_GetTime(x) microtime(x)
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 #define vnode_t struct vnode
84
85 #ifndef MUTEX_DEFAULT
86 #define MUTEX_DEFAULT 0
87 #endif /* MUTEX_DEFAULT */
88
89 #ifndef SSYS
90 #define SSYS 0x00002
91 #endif /* SSYS */
92
93 #define p_rcred p_ucred
94
95 #define VN_RELE(vp) vrele(((struct vnode *)(vp)))
96 #define VN_HOLD(vp) VREF(((struct vnode *)(vp)))
97
98 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
99 enum vcexcl { NONEXCL, EXCL };
100
101 #ifdef KERNEL
102 #ifndef MIN
103 #define MIN(A,B) ((A) < (B) ? (A) : (B))
104 #endif
105 #ifndef MAX
106 #define MAX(A,B) ((A) > (B) ? (A) : (B))
107 #endif
108 #endif /* KERNEL */
109
110 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ && !defined(IGNORE_STDS_H) */
111 #endif /* _KERNEL */
112
113 #else /* !defined(UKERNEL) */
114
115
116 /* This section for user space compiles only */
117
118 #define UKERNEL 1 /* user space kernel */
119
120 #include <afs/afs_sysnames.h>
121
122 #define AFS_USERSPACE_IP_ADDR 1
123 #define RXK_LISTENER_ENV 1
124 #define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
125
126 #define afsio_iov uio_iov
127 #define afsio_iovcnt uio_iovcnt
128 #define afsio_offset uio_offset
129 #define afsio_seg uio_segflg
130 #define afsio_fmode uio_fmode
131 #define afsio_resid uio_resid
132 #define AFS_UIOSYS UIO_SYSSPACE
133 #define AFS_UIOUSER UIO_USERSPACE
134 #define AFS_CLBYTES MCLBYTES
135 #define AFS_MINCHANGE 2
136 #define VATTR_NULL usr_vattr_null
137
138 #define AFS_DIRENT
139 #ifndef CMSERVERPREF
140 #define CMSERVERPREF
141 #endif
142
143 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
144 #include <limits.h>
145 #include <sys/param.h>
146 #include <sys/types.h>
147 #include <sys/mount.h>
148 #include <sys/fcntl.h>
149 #include <netinet/in.h>
150 #include <sys/uio.h>
151 #include <sys/socket.h>
152 #endif
153
154 #endif /* !defined(UKERNEL) */
155
156 #endif /* AFS_PARAM_COMMON_H */