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