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