Change wiki ref to wiki.openafs.org from stanford.edu
[openafs.git] / src / config / param.sunx86_59.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_VFS_ENV     1
17 /* Used only in vfsck code; is it needed any more???? */
18
19 #define AFS_VFSINCL_ENV 1       /* NOBODY uses this.... */
20 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
21 #define AFS_ENV                 1
22 #define AFS_SUN_ENV             1
23 #define AFS_SUN5_ENV            1
24 #define AFS_SUN52_ENV           1
25 #define AFS_SUN53_ENV           1
26 #define AFS_SUN54_ENV           1
27 #define AFS_SUN55_ENV           1
28 #define AFS_SUN56_ENV           1
29 #define AFS_SUN57_ENV           1
30 #define AFS_SUN58_ENV           1
31 #define AFS_SUN59_ENV           1
32 #define AFS_BOZONLOCK_ENV       1
33
34 #define AFS_X86_ENV             1
35
36 #define AFS_64BIT_CLIENT        1
37
38 #define AFS_HAVE_FLOCK_SYSID    1
39
40 #include <afs/afs_sysnames.h>
41
42 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
43 #define RXK_LISTENER_ENV   1
44 #define AFS_GCPAGS              1       /* if nonzero, garbage collect PAGs */
45
46 #ifdef AFS_NAMEI_ENV
47 #define AFS_64BIT_IOPS_ENV      1       /* needed for NAMEI... */
48 #else /* AFS_NAMEI_ENV */
49 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
50 #endif /* AFS_NAMEI_ENV */
51
52 #define AFS_SYSCALL             65
53
54 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
55 #define AFS_MOUNT_AFS    "afs"
56
57 /* Machine / Operating system information */
58 #define sys_sunx86_59   1
59 #define SYS_NAME        "sunx86_59"
60 #define SYS_NAME_ID     SYS_NAME_ID_sunx86_59
61 #define AFSLITTLE_ENDIAN        1
62 #define AFS_HAVE_FFS    1       /* Use system's ffs. */
63 #define AFS_HAVE_VXFS   1       /* Support cache on Veritas vxfs file system */
64 #define AFS_HAVE_STATVFS 1      /* System supports statvfs */
65 #define AFS_HAVE_STATVFS64      1       /* System supports statvfs64 */
66 #define AFS_VM_RDWR_ENV 1       /* read/write implemented via VM */
67 #define AFS_USE_GETTIMEOFDAY 1  /* use gettimeofday to implement rx clock */
68
69 #define NEARINODE_HINT  1       /* hint to ufs module to scatter inodes on disk */
70 #define nearInodeHash(volid, hval) {                                 \
71                 unsigned char*  ts = (unsigned char*)&(volid)+sizeof(volid)-1;\
72                 for ( (hval)=0; ts >= (unsigned char*)&(volid); ts--){\
73                     (hval) *= 173;                      \
74                     (hval) += *ts;                      \
75                 }                                       \
76                 }
77
78 /* Extra kernel definitions (from kdefs file) */
79 #ifdef KERNEL
80 /* sun definitions here */
81 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
82 #define AFS_SYSVLOCK            1       /* sys v locking supported */
83 #define afsio_iov               uio_iov
84 #define afsio_iovcnt    uio_iovcnt
85 #define afsio_offset    uio_loffset
86 #define afsio_seg               uio_segflg
87 #define afsio_fmode     uio_fmode
88 #define afsio_resid     uio_resid
89 #define AFS_UIOSYS      UIO_SYSSPACE
90 #define AFS_UIOUSER     UIO_USERSPACE
91 #define AFS_CLBYTES     MCLBYTES
92 #define AFS_MINCHANGE   2
93 #define osi_GetTime(x)  uniqtime32(x)
94
95 #define AFS_KALLOC(n)   kmem_alloc(n, KM_SLEEP)
96 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
97 #define AFS_KFREE       kmem_free
98 #define VATTR_NULL      vattr_null
99 #define memset(A, B, S) bzero(A, S)
100 #define memcpy(B, A, S) bcopy(A, B, S)
101 #define memcmp(A, B, S) bcmp(A, B, S)
102 #endif /* KERNEL */
103 #define AFS_DIRENT
104 #ifndef CMSERVERPREF
105 #define CMSERVERPREF
106 #endif
107 #define ROOTINO         UFSROOTINO
108
109 #endif /* AFS_PARAM_H */
110
111 #else /* !defined(UKERNEL) */
112
113 /* This section for user space compiles only */
114
115 /*
116  * Copyright 2000, International Business Machines Corporation and others.
117  * All Rights Reserved.
118  *
119  * This software has been released under the terms of the IBM Public
120  * License.  For details, see the LICENSE file in the top-level source
121  * directory or online at http://www.openafs.org/dl/license10.html
122  */
123
124 #ifndef AFS_PARAM_H
125 #define AFS_PARAM_H
126
127 #define AFS_VFS_ENV     1
128 /* Used only in vfsck code; is it needed any more???? */
129 #define RXK_LISTENER_ENV        1
130 #define AFS_USERSPACE_IP_ADDR   1
131 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
132
133 #define UKERNEL                 1       /* user space kernel */
134 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
135 #define AFS_ENV                 1
136 #define AFS_USR_SUN5_ENV        1
137 #define AFS_USR_SUN6_ENV        1
138 #define AFS_USR_SUN7_ENV        1
139 #define AFS_USR_SUN8_ENV        1
140 #define AFS_USR_SUN9_ENV        1
141
142 #include <afs/afs_sysnames.h>
143
144 #if 0
145 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
146 #endif
147
148 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
149 #define AFS_SYSCALL             65
150
151 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
152 #define AFS_MOUNT_AFS    1
153
154 /* Machine / Operating system information */
155 #define sys_sunx86_59   1
156 #define SYS_NAME        "sunx86_59"
157 #define SYS_NAME_ID     SYS_NAME_ID_sunx86_59
158 #define AFSLITTLE_ENDIAN        1
159 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
160 #define AFS_HAVE_STATVFS      1 /* System supports statvfs */
161 #define AFS_HAVE_STATVFS64      1       /* System supports statvfs64 */
162
163 /* Extra kernel definitions (from kdefs file) */
164 #ifdef KERNEL
165 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
166 #define AFS_SYSVLOCK            1       /* sys v locking supported */
167 #define afsio_iov       uio_iov
168 #define afsio_iovcnt    uio_iovcnt
169 #define afsio_offset    uio_offset
170 #define afsio_seg       uio_segflg
171 #define afsio_fmode     uio_fmode
172 #define afsio_resid     uio_resid
173 #define AFS_UIOSYS      1
174 #define AFS_UIOUSER     UIO_USERSPACE
175 #define AFS_CLBYTES     MCLBYTES
176 #define AFS_MINCHANGE   2
177 #define VATTR_NULL      usr_vattr_null
178 #endif /* KERNEL */
179 #define AFS_DIRENT
180 #ifndef CMSERVERPREF
181 #define CMSERVERPREF
182 #endif
183 #define ROOTINO         UFSROOTINO
184
185 #endif /* AFS_PARAM_H */
186
187 #endif /* !defined(UKERNEL) */