reindent-20030715
[openafs.git] / src / config / param.i386_fbsd_42.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
3
4 #ifndef AFS_PARAM_H
5 #define AFS_PARAM_H
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_ENV 1
16 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
17 #define AFS_FBSD_ENV 1
18 #define AFS_FBSD40_ENV 1
19 #define AFS_FBSD42_ENV 1
20 #define AFS_X86_FBSD_ENV 1
21 #define AFS_X86_FBSD40_ENV 1
22 #define AFS_X86_FBSD42_ENV 1
23 #define AFS_X86_ENV 1
24 #define AFS_NONFSTRANS 1
25 #define O_SYNC O_FSYNC
26 #define FTRUNC O_TRUNC
27
28 #define IUPD 0x0010
29 #define IACC 0x0020
30 #define ICHG 0x0040
31 #define IMOD 0x0080
32
33 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
34                                 NULL, curproc)
35 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
36                                 NULL, curproc)
37
38 #include <afs/afs_sysnames.h>
39
40 #define AFS_VM_RDWR_ENV 1
41 #define AFS_VFS_ENV     1
42 #define AFS_VFSINCL_ENV 1
43 #define AFS_GREEDY43_ENV        1
44 #define AFS_ENV         1
45
46 #define AFS_SYSCALL     210
47 #define AFS_MOUNT_AFS   "afs"
48
49 #ifndef MOUNT_UFS
50 #define MOUNT_UFS "ufs"
51 #endif
52
53 #ifndef MOUNT_AFS
54 #define MOUNT_AFS AFS_MOUNT_AFS
55 #endif
56 #define SYS_NAME        "i386_fbsd_42"
57 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_42
58
59 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
60 #define AFS_HAVE_STATVFS        0       /* System doesn't supports statvfs */
61
62 #define RXK_LISTENER_ENV 1
63 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
64 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
65
66 #define AFSLITTLE_ENDIAN 1
67
68 /* Extra kernel definitions (from kdefs file) */
69 #ifdef _KERNEL
70 #define AFS_GLOBAL_SUNLOCK        1
71 #define AFS_VFS34       1       /* What is VFS34??? */
72 #define AFS_SHORTGID    1       /* are group id's short? */
73 #define afsio_iov       uio_iov
74 #define afsio_iovcnt    uio_iovcnt
75 #define afsio_offset    uio_offset
76 #define afsio_seg       uio_segflg
77 #define afsio_resid     uio_resid
78 #define AFS_UIOSYS      UIO_SYSSPACE
79 #define AFS_UIOUSER     UIO_USERSPACE
80 #define AFS_CLBYTES     CLBYTES
81 #define osi_GetTime(x)  microtime(x)
82 #define AFS_KALLOC(x)   malloc(x, M_AFS, M_WAITOK)
83 #define AFS_KFREE(x,y)  free(x,M_AFS)
84 #define v_count         v_usecount
85 #define v_vfsp          v_mount
86 #define vfs_bsize       mnt_stat.f_bsize
87 #define vfs_fsid        mnt_stat.f_fsid
88 #define va_nodeid       va_fileid
89 #define vfs_vnodecovered mnt_vnodecovered
90 #define direct          dirent
91 #define vnode_t         struct vnode
92
93 #ifndef MUTEX_DEFAULT
94 #define MUTEX_DEFAULT   0
95 #endif /* MUTEX_DEFAULT */
96
97 #ifndef SSYS
98 #define SSYS            0x00002
99 #endif /* SSYS */
100
101 #define p_rcred         p_ucred
102
103 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
104 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
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 #endif /* AFS_PARAM_H */
122
123 #else /* !defined(UKERNEL) */
124
125 /* This section for user space compiles only */
126
127 #ifndef AFS_PARAM_H
128 #define AFS_PARAM_H
129
130
131 #define UKERNEL                 1       /* user space kernel */
132 #define AFS_ENV                 1
133 #define AFS_VFSINCL_ENV         1
134 #define AFS_USR_FBSD40_ENV      1
135 #define AFS_USR_FBSD42_ENV      1
136 #define AFS_USR_FBSD_ENV        1
137 #define AFS_NONFSTRANS 1
138
139 #define O_SYNC O_FSYNC
140
141 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
142 #define AFS_SYSCALL 210
143 #define AFS_NAMEI_ENV         1 /* User space interface to file system */
144 #define AFS_64BIT_ENV 1
145 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
146 #include <afs/afs_sysnames.h>
147
148 #define AFS_USERSPACE_IP_ADDR 1
149 #define RXK_LISTENER_ENV      1
150 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
151
152 /* Machine / Operating system information */
153 #define SYS_NAME        "i386_fbsd_42"
154 #define SYS_NAME_ID     SYS_NAME_ID_i386_fbsd_42
155 #define AFSLITTLE_ENDIAN    1
156 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
157 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
158 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
159
160 #define afsio_iov       uio_iov
161 #define afsio_iovcnt    uio_iovcnt
162 #define afsio_offset    uio_offset
163 #define afsio_seg       uio_segflg
164 #define afsio_fmode     uio_fmode
165 #define afsio_resid     uio_resid
166 #define AFS_UIOSYS      1
167 #define AFS_UIOUSER     UIO_USERSPACE
168 #define AFS_CLBYTES     MCLBYTES
169 #define AFS_MINCHANGE   2
170 #define VATTR_NULL      usr_vattr_null
171
172 #define AFS_DIRENT
173 #ifndef CMSERVERPREF
174 #define CMSERVERPREF
175 #endif
176
177 #include <limits.h>
178 #include <sys/param.h>
179 #include <sys/types.h>
180 #include <sys/mount.h>
181 #include <sys/fcntl.h>
182 #include <netinet/in.h>
183 #include <sys/uio.h>
184 #include <sys/socket.h>
185
186 #endif /* AFS_PARAM_H */
187
188 #endif /* !defined(UKERNEL) */