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