make-cleaner-20070122
[openafs.git] / src / config / param.nbsd21.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 #define AFS_NONFSTRANS 1
25 #define AFS_KERBEROS_ENV 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 #if __NetBSD_Version__ >= 299000900
33 #define AFS_HAVE_STATVFS    1   /* System supports statvfs */
34 #else
35 #define AFS_HAVE_STATVFS    0   /* System doesn't supports statvfs */
36 #endif
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 IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
53                                 NULL, curproc)
54 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
55                                 NULL, curproc)
56
57 #include <afs/afs_sysnames.h>
58
59 #define AFS_VM_RDWR_ENV 1
60 #define AFS_VFS_ENV     1
61 #define AFS_GREEDY43_ENV        1
62
63 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
64 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
65
66 /* Extra kernel definitions (from kdefs file) */
67 #ifdef _KERNEL
68 #define AFS_GLOBAL_SUNLOCK        1
69 #define AFS_VFS34       1       /* What is VFS34??? */
70 #define AFS_SHORTGID    1       /* are group id's short? */
71 #define afsio_iov       uio_iov
72 #define afsio_iovcnt    uio_iovcnt
73 #define afsio_offset    uio_offset
74 #define afsio_seg       uio_segflg
75 #define afsio_resid     uio_resid
76 #define AFS_UIOSYS      UIO_SYSSPACE
77 #define AFS_UIOUSER     UIO_USERSPACE
78 #define AFS_CLBYTES     CLBYTES
79 #define osi_GetTime(x)  microtime(x)
80 #define AFS_KALLOC(x)   kalloc(x)
81 #define AFS_KFREE(x,y)  kfree(x,y)
82 #define v_count         v_usecount
83 #define v_vfsp          v_mount
84 #define vfs_bsize       mnt_stat.f_bsize
85 #define vfs_fsid        mnt_stat.f_fsid
86 #define va_nodeid       va_fileid
87 #define vfs_vnodecovered mnt_vnodecovered
88 #define direct          dirent
89 #define vnode_t         struct vnode
90
91 #ifndef MUTEX_DEFAULT
92 #define MUTEX_DEFAULT   0
93 #endif /* MUTEX_DEFAULT */
94
95 #ifndef SSYS
96 #define SSYS            0x00002
97 #endif /* SSYS */
98
99 #define p_rcred         p_ucred
100
101 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
102 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
103
104 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
105 enum vcexcl { NONEXCL, EXCL };
106
107 #ifdef KERNEL
108 #ifndef MIN
109 #define MIN(A,B) ((A) < (B) ? (A) : (B))
110 #endif
111 #ifndef MAX
112 #define MAX(A,B) ((A) > (B) ? (A) : (B))
113 #endif
114 #endif /* KERNEL */
115
116 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ && !defined(IGNORE_STDS_H) */ 
117 #endif /* _KERNEL */
118
119 #else /* !defined(UKERNEL) */
120
121
122 /* This section for user space compiles only */
123
124 #define UKERNEL                 1       /* user space kernel */
125
126 #include <afs/afs_sysnames.h>
127
128 #define AFS_USERSPACE_IP_ADDR 1
129 #define RXK_LISTENER_ENV      1
130 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
131
132 #define afsio_iov       uio_iov
133 #define afsio_iovcnt    uio_iovcnt
134 #define afsio_offset    uio_offset
135 #define afsio_seg       uio_segflg
136 #define afsio_fmode     uio_fmode
137 #define afsio_resid     uio_resid
138 #define AFS_UIOSYS      UIO_SYSSPACE
139 #define AFS_UIOUSER     UIO_USERSPACE
140 #define AFS_CLBYTES     MCLBYTES
141 #define AFS_MINCHANGE   2
142 #define VATTR_NULL      usr_vattr_null
143
144 #define AFS_DIRENT
145 #ifndef CMSERVERPREF
146 #define CMSERVERPREF
147 #endif
148
149 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
150 #include <limits.h>
151 #include <sys/param.h>
152 #include <sys/types.h>
153 #include <sys/mount.h>
154 #include <sys/fcntl.h>
155 #include <netinet/in.h>
156 #include <sys/uio.h>
157 #include <sys/socket.h>
158 #endif
159
160 #endif /* !defined(UKERNEL) */
161
162 #endif /* AFS_PARAM_COMMON_H */