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