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