comerr: Fix a couple of libtool problems
[openafs.git] / src / config / param.amd64_fbsd_53.h
1 #ifndef AFS_PARAM_H
2 #define AFS_PARAM_H
3
4 #ifndef UKERNEL
5 /* This section for kernel libafs compiles only */
6
7 #ifndef IGNORE_STDS_H
8 #include <sys/param.h>
9 #endif
10
11 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
12 #define AFS_X86_XBSD_ENV 1
13
14 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
15 #define AFS_64BIT_CLIENT 1
16 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
17 #define AFS_FBSD_ENV 1
18 #define AFS_FBSD50_ENV 1
19 #define AFS_FBSD51_ENV 1
20 #define AFS_FBSD52_ENV 1
21 #define AFS_FBSD53_ENV 1
22 #define AFS_X86_FBSD_ENV 1
23 #define AFS_X86_FBSD50_ENV 1
24 #define AFS_X86_ENV 1
25 #undef  AFS_NONFSTRANS
26 #define AFS_NONFSTRANS 1
27 #define FTRUNC O_TRUNC
28
29 #define IUPD 0x0010
30 #define IACC 0x0020
31 #define ICHG 0x0040
32 #define IMOD 0x0080
33
34 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
35                                 NULL, curproc)
36 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
37                                 NULL, curproc)
38
39 #include <afs/afs_sysnames.h>
40
41 #define AFS_VM_RDWR_ENV 1
42 #define AFS_VFS_ENV     1
43 #define AFS_VFSINCL_ENV 1
44 #define AFS_GREEDY43_ENV        1
45 #define AFS_ENV         1
46
47 #define AFS_SYSCALL     339
48 #define AFS_MOUNT_AFS   "afs"
49
50 #ifndef MOUNT_UFS
51 #define MOUNT_UFS "ufs"
52 #endif
53
54 #ifndef MOUNT_AFS
55 #define MOUNT_AFS AFS_MOUNT_AFS
56 #endif
57 #define SYS_NAME        "amd64_fbsd_53"
58 #define SYS_NAME_ID     SYS_NAME_ID_amd64_fbsd_53
59
60 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
61 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
62
63 #define RXK_LISTENER_ENV 1
64 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
65 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
66
67 #define AFSLITTLE_ENDIAN 1
68
69 /* Extra kernel definitions (from kdefs file) */
70 #ifdef _KERNEL
71 #define AFS_GLOBAL_SUNLOCK        1
72 #define AFS_VFS34       1       /* What is VFS34??? */
73 #define AFS_SHORTGID    0       /* are group id's short? */
74 #define afsio_iov       uio_iov
75 #define afsio_iovcnt    uio_iovcnt
76 #define afsio_offset    uio_offset
77 #define afsio_seg       uio_segflg
78 #define afsio_resid     uio_resid
79 #define AFS_UIOSYS      UIO_SYSSPACE
80 #define AFS_UIOUSER     UIO_USERSPACE
81 #define AFS_CLBYTES     CLBYTES
82 #define osi_GetTime(x)  microtime(x)
83 #define AFS_KALLOC(x)   osi_fbsd_alloc((x), 1)
84 #undef  AFS_KALLOC_NOSLEEP
85 #define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0)
86 #define AFS_KFREE(x,y)  osi_fbsd_free((x))
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
93 #define direct          dirent
94 #define vnode_t         struct vnode
95
96 #ifndef MUTEX_DEFAULT
97 #define MUTEX_DEFAULT   0
98 #endif /* MUTEX_DEFAULT */
99
100 #ifndef SSYS
101 #define SSYS            0x00002
102 #endif /* SSYS */
103
104 #define p_rcred         p_ucred
105
106 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
107 enum vcexcl { NONEXCL, EXCL };
108
109 #ifdef KERNEL
110 #ifndef MIN
111 #define MIN(A,B) ((A) < (B) ? (A) : (B))
112 #endif
113 #ifndef MAX
114 #define MAX(A,B) ((A) > (B) ? (A) : (B))
115 #endif
116 #endif /* KERNEL */
117
118 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
119 #endif /* _KERNEL */
120
121 #else /* !defined(UKERNEL) */
122
123 /* This section for user space compiles only */
124
125 #define UKERNEL                 1       /* user space kernel */
126 #define AFS_ENV                 1
127 #define AFS_VFSINCL_ENV         1
128 #define AFS_USR_FBSD50_ENV      1
129 #define AFS_USR_FBSD51_ENV      1
130 #define AFS_USR_FBSD52_ENV      1
131 #define AFS_USR_FBSD53_ENV      1
132 #define AFS_USR_FBSD_ENV        1
133 #undef  AFS_NONFSTRANS
134 #define AFS_NONFSTRANS 1
135
136 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
137 #define AFS_SYSCALL 339
138 #define AFS_NAMEI_ENV         1 /* User space interface to file system */
139 #define AFS_64BITPOINTER_ENV  1
140 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
141 #define AFS_USERSPACE_IP_ADDR 1
142 #define RXK_LISTENER_ENV      1
143 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
144
145 /* Machine / Operating system information */
146 #include <afs/afs_sysnames.h>
147 #define SYS_NAME        "i386_fbsd_53"
148 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_53
149
150 #define AFSLITTLE_ENDIAN    1
151 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
152 #define AFS_HAVE_STATVFS    1   /* System doesn't support statvfs */
153 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
154
155 #define afsio_iov       uio_iov
156 #define afsio_iovcnt    uio_iovcnt
157 #define afsio_offset    uio_offset
158 #define afsio_seg       uio_segflg
159 #define afsio_fmode     uio_fmode
160 #define afsio_resid     uio_resid
161 #define AFS_UIOSYS      1
162 #define AFS_UIOUSER     UIO_USERSPACE
163 #define AFS_CLBYTES     MCLBYTES
164 #define AFS_MINCHANGE   2
165 #define VATTR_NULL      usr_vattr_null
166
167 #define AFS_DIRENT
168 #ifndef CMSERVERPREF
169 #define CMSERVERPREF
170 #endif
171
172 #include <limits.h>
173 #include <sys/param.h>
174 #include <sys/types.h>
175 #include <sys/mount.h>
176 #include <sys/fcntl.h>
177 #include <netinet/in.h>
178 #include <sys/uio.h>
179 #include <sys/socket.h>
180
181 #endif /* !defined(UKERNEL) */
182
183 #endif /* AFS_PARAM_H */