solaris-largefile-client-20040808
[openafs.git] / src / config / param.sunx86_510.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_SUN510_ENV          1
33 #define AFS_X86_ENV             1
34
35 #define AFS_64BIT_ENV           1       /* Defines afs_int32 as int, not long. */
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_510          1
59 #define SYS_NAME                "sunx86_510"
60 #define SYS_NAME_ID             SYS_NAME_ID_sunx86_510
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_VM_RDWR_ENV         1       /* read/write implemented via VM */
66 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
67
68 #define NEARINODE_HINT          1       /* hint to ufs module to scatter inodes on disk */
69 #define nearInodeHash(volid, hval) {                                 \
70                 unsigned char*  ts = (unsigned char*)&(volid)+sizeof(volid)-1;\
71                 for ( (hval)=0; ts >= (unsigned char*)&(volid); ts--){\
72                     (hval) *= 173;                      \
73                     (hval) += *ts;                      \
74                 }                                       \
75                 }
76
77 /* Extra kernel definitions (from kdefs file) */
78 #ifdef KERNEL
79 /* sun definitions here */
80 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
81 #define AFS_SYSVLOCK            1       /* sys v locking supported */
82 /*#define       AFS_USEBUFFERS  1*/
83 #define afsio_iov               uio_iov
84 #define afsio_iovcnt            uio_iovcnt
85 #define afsio_offset            uio_offset
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)          uniqtime(x)
94
95 /**
96   * These defines are for the 64 bit Solaris 7 port
97   * AFS_SYSCALL32 is used to protect the ILP32 syscall interface
98   * AFS_64BIT_ENV is for use of 64 bit inode numbers
99   */
100 #if defined(__sparcv9)
101 #define AFS_SUN57_64BIT_ENV     1
102 #define AFS_64BIT_INO           1
103 #endif
104
105 /**
106   * Solaris 7 64 bit has two versions of uniqtime. Since we consistently
107   * use 32 bit quantities for time in afs, we now use uniqtime32
108   */
109 #if defined(AFS_SUN57_64BIT_ENV)
110 #undef osi_GetTime
111 #define osi_GetTime(x)          uniqtime32(x)
112 #endif
113
114
115
116 #define AFS_KALLOC(n)           kmem_alloc(n, KM_SLEEP)
117 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
118 #define AFS_KFREE               kmem_free
119 #define VATTR_NULL              vattr_null
120 #define memset(A, B, S)         bzero(A, S)
121 #define memcpy(B, A, S)         bcopy(A, B, S)
122 #define memcmp(A, B, S)         bcmp(A, B, S)
123 #endif /* KERNEL */
124 #define AFS_DIRENT
125 #ifndef CMSERVERPREF
126 #define CMSERVERPREF
127 #endif
128 #define ROOTINO                 UFSROOTINO
129
130 #endif /* AFS_PARAM_H */
131
132 #else /* !defined(UKERNEL) */
133
134 /* This section for user space compiles only */
135
136 /*
137  * Copyright 2000, International Business Machines Corporation and others.
138  * All Rights Reserved.
139  * 
140  * This software has been released under the terms of the IBM Public
141  * License.  For details, see the LICENSE file in the top-level source
142  * directory or online at http://www.openafs.org/dl/license10.html
143  */
144
145 #ifndef AFS_PARAM_H
146 #define AFS_PARAM_H
147
148 #define AFS_VFS_ENV             1
149 /* Used only in vfsck code; is it needed any more???? */
150 #define RXK_LISTENER_ENV        1
151 #define AFS_USERSPACE_IP_ADDR   1
152 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
153
154 #define UKERNEL                 1       /* user space kernel */
155 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
156 #define AFS_ENV                 1
157 #define AFS_USR_SUN5_ENV        1
158 #define AFS_USR_SUN6_ENV        1
159
160 #include <afs/afs_sysnames.h>
161
162 #if 0
163 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
164 #endif
165
166 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
167 #define AFS_SYSCALL             65
168
169 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
170 #define AFS_MOUNT_AFS           1
171
172 /* Machine / Operating system information */
173 #define sys_sun4x_55            1
174 #define SYS_NAME                "sun4x_55"
175 #define SYS_NAME_ID             SYS_NAME_ID_sun4x_55
176 #define AFSLITTLE_ENDIAN        1
177 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
178 #define AFS_HAVE_STATVFS        0       /* System doesn't support statvfs */
179
180 /* Extra kernel definitions (from kdefs file) */
181 #ifdef KERNEL
182 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
183 #define AFS_SYSVLOCK            1       /* sys v locking supported */
184 /*#define       AFS_USEBUFFERS  1*/
185 #define afsio_iov               uio_iov
186 #define afsio_iovcnt            uio_iovcnt
187 #define afsio_offset            uio_offset
188 #define afsio_seg               uio_segflg
189 #define afsio_fmode             uio_fmode
190 #define afsio_resid             uio_resid
191 #define AFS_UIOSYS              1
192 #define AFS_UIOUSER             UIO_USERSPACE
193 #define AFS_CLBYTES             MCLBYTES
194 #define AFS_MINCHANGE           2
195 #define VATTR_NULL              usr_vattr_null
196 #endif /* KERNEL */
197 #define AFS_DIRENT
198 #ifndef CMSERVERPREF
199 #define CMSERVERPREF
200 #endif
201 #define ROOTINO                 UFSROOTINO
202
203 #endif /* AFS_PARAM_H */
204
205 #endif /* !defined(UKERNEL) */