1 /* NetBSD shared section */
3 #ifndef AFS_PARAM_COMMON_H
4 #define AFS_PARAM_COMMON_H 1
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
10 #define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */
11 #define AFS_SYSCALL 210
13 #define AFS_KALLOC(n) kmem_alloc(n, KM_SLEEP)
14 #define AFS_KALLOC_NOSLEEP(n) kmem_alloc(n, KM_NOSLEEP)
15 #define AFS_KFREE kmem_free
16 #define VATTR_NULL vattr_null
19 /* including this file before sysincludes.h is canonical, but
20 * NBSD40's mount.h defines MOUNT_AFS */
23 #define MOUNT_AFS AFS_MOUNT_AFS
28 #define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */
30 #define AFS_NBSD_ENV 1
31 #define AFS_NBSD15_ENV 1
32 #define AFS_NBSD16_ENV 1
33 #define AFS_NBSD20_ENV 1
34 #define AFS_NBSD30_ENV 1
35 #define AFS_NBSD40_ENV 1
36 #define AFS_NBSD50_ENV 1
37 #define AFS_NBSD60_ENV 1
39 #define AFS_NONFSTRANS 1
41 #define AFS_VFSINCL_ENV 1
43 #define AFS_HAVE_FFS 1 /* Use system's ffs. */
45 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
46 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */
51 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
52 #include <sys/param.h>
55 #define FTRUNC O_TRUNC
62 #define RXK_LISTENER_ENV 1
64 #include <afs/afs_sysnames.h>
67 #define AFS_GREEDY43_ENV 1
69 #define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
70 #define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */
71 #define AFS_GLOBAL_SUNLOCK 1
73 /* Extra kernel definitions (from kdefs file) */
74 #ifdef _KERNEL_DEPRECATED
75 #define AFS_VFS34 1 /* What is VFS34??? */
76 #define afsio_iov uio_iov
77 #define afsio_iovcnt uio_iovcnt
78 #define afsio_offset uio_offset
79 #define afsio_seg uio_segflg
80 #define afsio_resid uio_resid
81 #define AFS_UIOSYS UIO_SYSSPACE
82 #define AFS_UIOUSER UIO_USERSPACE
83 #define AFS_CLBYTES CLBYTES
84 #define osi_GetTime(x) microtime(x)
85 #define AFS_KALLOC(x) kalloc(x)
86 #define AFS_KFREE(x,y) kfree(x,y)
87 #define v_count v_usecount
88 #define v_vfsp v_mount
89 #define vfs_bsize mnt_stat.f_bsize
90 #define vfs_fsid mnt_stat.f_fsid
91 #define va_nodeid va_fileid
92 #define vfs_vnodecovered mnt_vnodecovered
96 #define MUTEX_DEFAULT 0
97 #endif /* MUTEX_DEFAULT */
103 #define p_rcred p_ucred
105 #define VN_RELE(vp) vrele(((struct vnode *)(vp)))
106 #define VN_HOLD(vp) VREF(((struct vnode *)(vp)))
108 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H)
109 enum vcexcl
{ NONEXCL
, EXCL
};
113 #define MIN(A,B) ((A) < (B) ? (A) : (B))
116 #define MAX(A,B) ((A) > (B) ? (A) : (B))
120 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ && !defined(IGNORE_STDS_H) */
121 #endif /* _KERNEL_DEPRECATED */
123 #else /* !defined(UKERNEL) */
126 /* This section for user space compiles only */
128 #define UKERNEL 1 /* user space kernel */
130 #include <afs/afs_sysnames.h>
132 #define AFS_USERSPACE_IP_ADDR 1
133 #define RXK_LISTENER_ENV 1
134 #define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
136 #define afsio_iov uio_iov
137 #define afsio_iovcnt uio_iovcnt
138 #define afsio_offset uio_offset
139 #define afsio_seg uio_segflg
140 #define afsio_fmode uio_fmode
141 #define afsio_resid uio_resid
142 #define AFS_UIOSYS UIO_SYSSPACE
143 #define AFS_UIOUSER UIO_USERSPACE
144 #define AFS_CLBYTES MCLBYTES
145 #define AFS_MINCHANGE 2
146 #define VATTR_NULL usr_vattr_null
153 #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H) && !defined()
155 #include <sys/param.h>
156 #include <sys/types.h>
157 #include <sys/mount.h>
158 #include <sys/fcntl.h>
159 #include <netinet/in.h>
161 #include <sys/socket.h>
164 #endif /* !defined(UKERNEL) */
166 #endif /* AFS_PARAM_COMMON_H */