reindent-again-20030808
[openafs.git] / src / config / param.alpha_dux50.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
3
4 /*
5  * Copyright 2000, International Business Machines Corporation and others.
6  * All Rights Reserved.
7  * 
8  * This software has been released under the terms of the IBM Public
9  * License.  For details, see the LICENSE file in the top-level source
10  * directory or online at http://www.openafs.org/dl/license10.html
11  */
12
13 #ifndef AFS_PARAM_H
14 #define AFS_PARAM_H
15
16 #define AFS_OSF_ENV     1
17 #define AFS_OSF20_ENV   1
18 #define AFS_OSF30_ENV   1
19 #define AFS_OSF32_ENV   1
20 #define AFS_OSF32C_ENV  1
21 #define AFS_DUX40_ENV   1
22 #define AFS_DUX50_ENV   1
23 #define __alpha         1
24 #define AFS_ALPHA_ENV   1
25 #define AFS_DECOSF_ENV  1
26 #define AFS_64BIT_ENV   1
27
28 #include <afs/afs_sysnames.h>
29
30 #define AFS_VM_RDWR_ENV 1
31 #define AFS_VFS_ENV     1
32 #define AFS_GREEDY43_ENV        1
33 #define AFS_ENV         1
34 #define AFS_MINPHYS_ENV 1
35 #define CMUSTD_ENV      1
36
37 #define AFS_SYSCALL     232
38 #define AFS_MOUNT_AFS   13
39
40 #ifndef MOUNT_AFS
41 #define MOUNT_AFS AFS_MOUNT_AFS
42 #endif
43 #define SYS_NAME        "alpha_dux50"
44 #define SYS_NAME_ID     SYS_NAME_ID_alpha_dux50
45
46 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
47 #define AFS_HAVE_STATVFS        1       /* System supports statvfs */
48
49 #define AFS_GCPAGS              1       /* if nonzero, garbage collect PAGs */
50
51 #ifdef AFS_NAMEI_ENV
52 #define AFS_64BIT_IOPS_ENV     1        /* needed for NAMEI... */
53 #else
54 #define AFS_3DISPARES   1       /* Utilize the 3 available disk inode spares */
55 #endif
56
57 #define AFS_USE_GETTIMEOFDAY 1  /* use gettimeofday to implement rx clock */
58
59 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
60 #include <machine/endian.h>
61 #if     BYTE_ORDER == BIG_ENDIAN
62 #define AFSBIG_ENDIAN           1
63 #else
64 #if     BYTE_ORDER == LITTLE_ENDIAN
65 #define AFSLITTLE_ENDIAN        1
66 #else
67 #error  machine/endian.h must define BYTE_ORDER!
68 #endif
69 #endif
70 #endif /* ! ASSEMBLER && ! __LANGUAGE_ASSEMBLY__ */
71
72 #define NEARINODE_HINT  1       /* hint to ufs module to scatter inodes on disk */
73 #define nearInodeHash(volid, hval) {                          \
74                 unsigned char*  ts = (unsigned char*)&(volid);\
75                 for ((hval)=0; ts<(unsigned char*)&(volid)+sizeof(volid);ts++){\
76                     (hval) *= 173;                      \
77                     (hval) += *ts;                      \
78                 }                                       \
79                 }
80
81 /* Extra kernel definitions (from kdefs file) */
82 #ifdef _KERNEL
83 #define AFS_GLOBAL_SUNLOCK        1
84 #define AFS_VFS34       1       /* What is VFS34??? */
85 #define AFS_SHORTGID    1       /* are group id's short? */
86 #define afsio_iov       uio_iov
87 #define afsio_iovcnt    uio_iovcnt
88 #define afsio_offset    uio_offset
89 #define afsio_seg       uio_segflg
90 #define afsio_resid     uio_resid
91 #define AFS_UIOSYS      UIO_SYSSPACE
92 #define AFS_UIOUSER     UIO_USERSPACE
93 #define AFS_CLBYTES     CLBYTES
94 #define osi_GetTime(x)  microtime(x)
95 #define AFS_KALLOC(x)   kalloc(x)
96 #define AFS_KFREE(x,y)  kfree(x,y)
97 #define v_count         v_usecount
98 #define v_vfsp          v_mount
99 #define vfs_bsize       m_stat.f_bsize
100 #define vfs_fsid        m_stat.f_fsid
101 #define va_nodeid       va_fileid
102 #define vfs_vnodecovered m_vnodecovered
103 #define direct          dirent
104 #define vnode_t         struct vnode
105
106 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
107 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
108
109 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
110 enum vcexcl { NONEXCL, EXCL };
111
112 #include <net/net_globals.h>
113
114 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
115
116 #define memset(A, B, S) bzero(A, S)
117 #define memcpy(B, A, S) bcopy(A, B, S)
118 #define memcmp(A, B, S) bcmp(A, B, S)
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 /*
128  * Copyright 2000, International Business Machines Corporation and others.
129  * All Rights Reserved.
130  * 
131  * This software has been released under the terms of the IBM Public
132  * License.  For details, see the LICENSE file in the top-level source
133  * directory or online at http://www.openafs.org/dl/license10.html
134  */
135
136 #ifndef AFS_PARAM_H
137 #define AFS_PARAM_H
138
139 #define AFS_VFS_ENV     1
140 /* Used only in vfsck code; is it needed any more???? */
141 #define RXK_LISTENER_ENV        1
142 #define AFS_USERSPACE_IP_ADDR   1
143 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
144
145 #define UKERNEL                 1       /* user space kernel */
146 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
147 #define AFS_64BIT_ENV           1
148 #define AFS_ENV                 1
149 #define AFS_USR_OSF_ENV         1
150 #define AFS_USR_DUX40_ENV       1
151
152 #include <afs/afs_sysnames.h>
153
154                                                                                                                /*#define AFS_GLOBAL_SUNLOCK    1 *//* For global locking */
155
156 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
157 #define AFS_SYSCALL             232
158
159 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
160 #define AFS_MOUNT_AFS    1
161
162 /* Machine / Operating system information */
163 #define sys_alpha_dux40 1
164 #define SYS_NAME        "alpha_dux50"
165 #define SYS_NAME_ID     SYS_NAME_ID_alpha_dux50
166 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
167 #define AFS_HAVE_STATVFS        0       /* System doesn't support statvfs */
168 #define AFSLITTLE_ENDIAN        1
169
170 /* Extra kernel definitions (from kdefs file) */
171 #ifdef KERNEL
172 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
173 #define AFS_SYSVLOCK            1       /* sys v locking supported */
174 /*#define       AFS_USEBUFFERS  1*/
175 #define afsio_iov       uio_iov
176 #define afsio_iovcnt    uio_iovcnt
177 #define afsio_offset    uio_offset
178 #define afsio_seg       uio_segflg
179 #define afsio_fmode     uio_fmode
180 #define afsio_resid     uio_resid
181 #define AFS_UIOSYS      1
182 #define AFS_UIOUSER     UIO_USERSPACE
183 #define AFS_CLBYTES     MCLBYTES
184 #define AFS_MINCHANGE   2
185 #define VATTR_NULL      usr_vattr_null
186 #endif /* KERNEL */
187 #define AFS_DIRENT
188 #ifndef CMSERVERPREF
189 #define CMSERVERPREF
190 #endif
191 #define ROOTINO         UFSROOTINO
192
193 #endif /* AFS_PARAM_H */
194
195 #endif /* !defined(UKERNEL) */