9977eeeea55bbab26839b5d64c4fe6621290e7cd
[openafs.git] / src / config / param.generic_fbsd.h
1 #ifndef AFS_PARAM_COMMON_H
2 #define AFS_PARAM_COMMON_H
3
4 #define AFSLITTLE_ENDIAN        1
5 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
6
7 #ifndef UKERNEL
8 /* This section for kernel libafs compiles only */
9
10 #ifndef IGNORE_STDS_H
11 #include <sys/param.h>
12 #endif
13
14 #define AFS_XBSD_ENV            1               /* {Free,Open,Net}BSD */
15 #define AFS_X86_XBSD_ENV        1
16
17 #define AFS_NAMEI_ENV           1       /* User space interface to file system */
18 #define AFS_64BIT_CLIENT        1
19 #define AFS_64BIT_IOPS_ENV      1       /* Needed for NAMEI */
20 #define AFS_FBSD_ENV            1
21 #define AFS_X86_FBSD_ENV        1
22 #define AFS_X86_ENV             1
23 #undef AFS_NONFSTRANS
24 #define AFS_NONFSTRANS          1
25 #define FTRUNC O_TRUNC
26
27 #define IUPD 0x0010
28 #define IACC 0x0020
29 #define ICHG 0x0040
30 #define IMOD 0x0080
31
32 #define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
33                             NULL, curproc)
34 #define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \
35                               NULL, curproc)
36
37 #include <afs/afs_sysnames.h>
38
39 #define AFS_VFS_ENV             1
40 #define AFS_VFSINCL_ENV         1
41 #define AFS_GREEDY43_ENV        1
42 #define AFS_ENV                 1
43
44 #define AFS_SYSCALL             339
45 #define AFS_MOUNT_AFS           "afs"
46
47 #ifndef MOUNT_UFS
48 #define MOUNT_UFS "ufs"
49 #endif
50
51 #ifndef MOUNT_AFS
52 #define MOUNT_AFS AFS_MOUNT_AFS
53 #endif
54
55 #define RXK_LISTENER_ENV        1
56 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
57 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
58
59 /* Extra kernel definitions (from kdefs file) */
60 #ifdef _KERNEL
61 #define AFS_GLOBAL_SUNLOCK      1
62 #define AFS_VFS34               1       /* What is VFS34??? */
63 #define afsio_iov               uio_iov
64 #define afsio_iovcnt            uio_iovcnt
65 #define afsio_offset            uio_offset
66 #define afsio_seg               uio_segflg
67 #define afsio_resid             uio_resid
68 #define AFS_UIOSYS              UIO_SYSSPACE
69 #define AFS_UIOUSER             UIO_USERSPACE
70 #define AFS_CLBYTES             CLBYTES
71 #define osi_GetTime(x)          microtime(x)
72 #define AFS_KALLOC(x)           osi_fbsd_alloc((x), 1)
73 #undef AFS_KALLOC_NOSLEEP
74 #define AFS_KALLOC_NOSLEEP(x)   osi_fbsd_alloc((x), 0)
75 #define AFS_KFREE(x,y)          osi_fbsd_free((x))
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 # if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
96 enum vcexcl { NONEXCL, EXCL };
97
98 #  ifdef KERNEL
99 #   ifndef MIN
100 #    define MIN(A,B) ((A) < (B) ? (A) : (B))
101 #   endif
102 #   ifndef MAX
103 #    define MAX(A,B) ((A) > (B) ? (A) : (B))
104 #   endif
105 #  endif /* KERNEL */
106
107 # endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
108 #endif /* _KERNEL */
109
110 /*
111  * Consolidate version checks into configure-test-like definitions
112  */
113
114 /* r270870 moved if_data into ifnet to avoid namespace-stealing macros. */
115 #if __FreeBSD_version >= 1100030
116 #define FBSD_IF_METRIC_IN_STRUCT_IFNET
117 #endif
118
119 /* r271438 changed the ifa_ifwithnet KPI signature. */
120 #if __FreeBSD_version >= 1100032
121 #define FBSD_IFA_IFWITHNET_THREE_ARGS
122 #endif
123
124 /* r273707 added a flags argument to syscall_register() */
125 #if __FreeBSD_version >= 1100041
126 #define FBSD_SYSCALL_REGISTER_FOUR_ARGS
127 #endif
128
129 #else /* !defined(UKERNEL) */
130
131 /* This section for user space compiles only */
132
133 #define UKERNEL                 1       /* user space kernel */
134 #define AFS_ENV                 1
135 #define AFS_VFSINCL_ENV         1
136 #define AFS_USR_FBSD_ENV        1
137 #undef  AFS_NONFSTRANS
138 #define AFS_NONFSTRANS          1
139
140 #define AFS_MOUNT_AFS           "afs"   /* The name of the filesystem type. */
141 #define AFS_SYSCALL             339
142 #define AFS_NAMEI_ENV           1       /* User space interface to file system */
143 #define AFS_64BIT_IOPS_ENV      1       /* Needed for NAMEI */
144 #define AFS_USERSPACE_IP_ADDR   1
145 #define RXK_LISTENER_ENV        1
146 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
147 #define AFS_HAVE_STATVFS        1       /* System supports statvfs */
148
149 #include <afs/afs_sysnames.h>
150
151 #define afsio_iov               uio_iov
152 #define afsio_iovcnt            uio_iovcnt
153 #define afsio_offset            uio_offset
154 #define afsio_seg               uio_segflg
155 #define afsio_fmode             uio_fmode
156 #define afsio_resid             uio_resid
157 #define AFS_UIOSYS              1
158 #define AFS_UIOUSER             UIO_USERSPACE
159 #define AFS_CLBYTES             MCLBYTES
160 #define AFS_MINCHANGE           2
161 #define VATTR_NULL              usr_vattr_null
162
163 #define AFS_DIRENT
164 #ifndef CMSERVERPREF
165 #define CMSERVERPREF
166 #endif
167
168 #include <sys/param.h>
169 #include <sys/types.h>
170 #include <sys/mount.h>
171 #include <sys/fcntl.h>
172 #include <sys/uio.h>
173 #include <sys/socket.h>
174 #include <netinet/in.h>
175 #include <limits.h>
176
177 #endif /* !defined(UKERNEL) */
178
179 #endif /* AFS_COMMON_PARAM_H */