windows-updates-20021104
[openafs.git] / src / config / param.sun4x_59.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
3
4 #ifndef AFS_PARAM_H
5 #define AFS_PARAM_H
6
7 #define AFS_VFS_ENV     1
8 /* Used only in vfsck code; is it needed any more???? */
9
10 #define AFS_VFSINCL_ENV 1       /* NOBODY uses this.... */
11 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
12 #define AFS_ENV                 1
13 #define AFS_SUN_ENV             1
14 #define AFS_SUN5_ENV            1
15 #define AFS_SUN52_ENV           1
16 #define AFS_SUN53_ENV           1
17 #define AFS_SUN54_ENV           1
18 #define AFS_SUN55_ENV           1
19 #define AFS_SUN56_ENV           1
20 #define AFS_SUN57_ENV           1
21 #define AFS_SUN58_ENV           1
22 #define AFS_SUN59_ENV           1
23
24 #define AFS_64BIT_ENV           1       /* Defines afs_int32 as int, not long. */
25
26 #ifdef AFS_NAMEI_ENV
27 #define AFS_64BIT_IOPS_ENV     1       /* needed for NAMEI... */
28 #else /* AFS_NAMEI_ENV */
29 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
30 #endif /* AFS_NAMEI_ENV */
31
32 #include <afs/afs_sysnames.h>
33
34 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
35 #define RXK_LISTENER_ENV   1
36 #define AFS_GCPAGS              1       /* if nonzero, garbage collect PAGs */
37
38 #define AFS_SYSCALL             65
39
40 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
41 #define AFS_MOUNT_AFS    "afs"
42
43 /* Machine / Operating system information */
44 #define sys_sun4x_59    1
45 #define SYS_NAME        "sun4x_59"
46 #define SYS_NAME_ID     SYS_NAME_ID_sun4x_59
47 #define AFSBIG_ENDIAN   1
48 #define AFS_HAVE_FFS    1       /* Use system's ffs. */
49 #define AFS_HAVE_VXFS   1       /* Support cache on Veritas vxfs file system */
50 #define AFS_HAVE_STATVFS 1      /* System supports statvfs */
51 #define AFS_VM_RDWR_ENV 1       /* read/write implemented via VM */
52 #define AFS_USE_GETTIMEOFDAY 1  /* use gettimeofday to implement rx clock */
53
54 #define NEARINODE_HINT  1   /* hint to ufs module to scatter inodes on disk*/
55 #define nearInodeHash(volid, hval) {                                 \
56                 unsigned char*  ts = (unsigned char*)&(volid)+sizeof(volid)-1;\
57                 for ( (hval)=0; ts >= (unsigned char*)&(volid); ts--){\
58                     (hval) *= 173;                      \
59                     (hval) += *ts;                      \
60                 }                                       \
61                 }
62
63 /* Extra kernel definitions (from kdefs file) */
64 #ifdef KERNEL
65 /* sun definitions here */
66 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
67 #define AFS_SYSVLOCK            1       /* sys v locking supported */
68 /*#define       AFS_USEBUFFERS  1*/
69 #define afsio_iov               uio_iov
70 #define afsio_iovcnt    uio_iovcnt
71 #define afsio_offset    uio_offset
72 #define afsio_seg               uio_segflg
73 #define afsio_fmode     uio_fmode
74 #define afsio_resid     uio_resid
75 #define AFS_UIOSYS      UIO_SYSSPACE
76 #define AFS_UIOUSER     UIO_USERSPACE
77 #define AFS_CLBYTES     MCLBYTES
78 #define AFS_MINCHANGE   2
79 #define osi_GetTime(x)  uniqtime(x)
80
81 /**
82   * These defines are for the 64 bit Solaris 7 port
83   * AFS_SYSCALL32 is used to protect the ILP32 syscall interface
84   * AFS_64BIT_ENV is for use of 64 bit inode numbers
85   */
86 #if defined(__sparcv9)
87 #define AFS_SUN57_64BIT_ENV     1
88 #define AFS_64BIT_INO           1
89 #endif
90
91 /**
92   * Solaris 7 64 bit has two versions of uniqtime. Since we consistently
93   * use 32 bit quantities for time in afs, we now use uniqtime32
94   */
95 #if defined(AFS_SUN57_64BIT_ENV)
96 #undef osi_GetTime
97 #define osi_GetTime(x)  uniqtime32(x)
98 #endif
99
100
101
102 #define AFS_KALLOC(n)   kmem_alloc(n, KM_SLEEP)
103 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
104 #define AFS_KFREE       kmem_free
105 #define VATTR_NULL      vattr_null
106 #define memset(A, B, S) bzero(A, S)
107 #define memcpy(B, A, S) bcopy(A, B, S)
108 #define memcmp(A, B, S) bcmp(A, B, S)
109 #endif /* KERNEL */
110 #define AFS_DIRENT      
111 #ifndef CMSERVERPREF
112 #define CMSERVERPREF
113 #endif
114 #define ROOTINO         UFSROOTINO
115
116 #endif /* AFS_PARAM_H */
117
118 #else /* !defined(UKERNEL) */
119
120 /* This section for user space compiles only */
121
122 #ifndef AFS_PARAM_H
123 #define AFS_PARAM_H
124
125 #define AFS_VFS_ENV     1
126 /* Used only in vfsck code; is it needed any more???? */
127 #define RXK_LISTENER_ENV        1
128 #define AFS_USERSPACE_IP_ADDR   1
129 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
130
131 #define UKERNEL                 1       /* user space kernel */
132 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
133 #define AFS_ENV                 1
134 #define AFS_USR_SUN5_ENV        1
135 #define AFS_USR_SUN6_ENV        1
136 #define AFS_USR_SUN7_ENV        1
137 #define AFS_USR_SUN8_ENV        1
138 #define AFS_USR_SUN9_ENV        1
139
140 #define AFS_64BIT_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_sun4x_59    1
156 #define SYS_NAME        "sun4x_59"
157 #define SYS_NAME_ID     SYS_NAME_ID_sun4x_59
158 #define AFSBIG_ENDIAN   1
159 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
160 #define AFS_HAVE_STATVFS      0       /* System doesn't support statvfs */
161
162 /* Extra kernel definitions (from kdefs file) */
163 #ifdef KERNEL
164 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
165 #define AFS_SYSVLOCK            1       /* sys v locking supported */
166 /*#define       AFS_USEBUFFERS  1*/
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) */