netbsd-has-long-long-20040806
[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 #define AFS_HAVE_FLOCK_SYSID    1
27
28 #ifdef AFS_NAMEI_ENV
29 #define AFS_64BIT_IOPS_ENV     1        /* needed for NAMEI... */
30 #else /* AFS_NAMEI_ENV */
31 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
32 #endif /* AFS_NAMEI_ENV */
33
34 #include <afs/afs_sysnames.h>
35
36 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
37 #define RXK_LISTENER_ENV   1
38 #define AFS_GCPAGS              1       /* if nonzero, garbage collect PAGs */
39
40 #define AFS_SYSCALL             65
41
42 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
43 #define AFS_MOUNT_AFS    "afs"
44
45 /* Machine / Operating system information */
46 #define sys_sun4x_59    1
47 #define SYS_NAME        "sun4x_59"
48 #define SYS_NAME_ID     SYS_NAME_ID_sun4x_59
49 #define AFSBIG_ENDIAN   1
50 #define AFS_HAVE_FFS    1       /* Use system's ffs. */
51 #define AFS_HAVE_VXFS   1       /* Support cache on Veritas vxfs file system */
52 #define AFS_HAVE_STATVFS 1      /* System supports statvfs */
53 #define AFS_VM_RDWR_ENV 1       /* read/write implemented via VM */
54 #define AFS_USE_GETTIMEOFDAY 1  /* use gettimeofday to implement rx clock */
55
56 #define NEARINODE_HINT  1       /* hint to ufs module to scatter inodes on disk */
57 #define nearInodeHash(volid, hval) {                                 \
58                 unsigned char*  ts = (unsigned char*)&(volid)+sizeof(volid)-1;\
59                 for ( (hval)=0; ts >= (unsigned char*)&(volid); ts--){\
60                     (hval) *= 173;                      \
61                     (hval) += *ts;                      \
62                 }                                       \
63                 }
64
65 /* Extra kernel definitions (from kdefs file) */
66 #ifdef KERNEL
67 /* sun definitions here */
68 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
69 #define AFS_SYSVLOCK            1       /* sys v locking supported */
70 /*#define       AFS_USEBUFFERS  1*/
71 #define afsio_iov               uio_iov
72 #define afsio_iovcnt    uio_iovcnt
73 #define afsio_offset    uio_offset
74 #define afsio_seg               uio_segflg
75 #define afsio_fmode     uio_fmode
76 #define afsio_resid     uio_resid
77 #define AFS_UIOSYS      UIO_SYSSPACE
78 #define AFS_UIOUSER     UIO_USERSPACE
79 #define AFS_CLBYTES     MCLBYTES
80 #define AFS_MINCHANGE   2
81 #define osi_GetTime(x)  uniqtime(x)
82
83 /**
84   * These defines are for the 64 bit Solaris 7 port
85   * AFS_SYSCALL32 is used to protect the ILP32 syscall interface
86   * AFS_64BIT_ENV is for use of 64 bit inode numbers
87   */
88 #if defined(__sparcv9)
89 #define AFS_SUN57_64BIT_ENV     1
90 #define AFS_64BIT_INO           1
91 #endif
92
93 /**
94   * Solaris 7 64 bit has two versions of uniqtime. Since we consistently
95   * use 32 bit quantities for time in afs, we now use uniqtime32
96   */
97 #if defined(AFS_SUN57_64BIT_ENV)
98 #undef osi_GetTime
99 #define osi_GetTime(x)  uniqtime32(x)
100 #endif
101
102
103
104 #define AFS_KALLOC(n)   kmem_alloc(n, KM_SLEEP)
105 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
106 #define AFS_KFREE       kmem_free
107 #define VATTR_NULL      vattr_null
108 #define memset(A, B, S) bzero(A, S)
109 #define memcpy(B, A, S) bcopy(A, B, S)
110 #define memcmp(A, B, S) bcmp(A, B, S)
111 #endif /* KERNEL */
112 #define AFS_DIRENT
113 #ifndef CMSERVERPREF
114 #define CMSERVERPREF
115 #endif
116 #define ROOTINO         UFSROOTINO
117
118 #endif /* AFS_PARAM_H */
119
120 #else /* !defined(UKERNEL) */
121
122 /* This section for user space compiles only */
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 #define AFS_64BIT_ENV          1
143
144 #include <afs/afs_sysnames.h>
145
146 #if 0
147 #define AFS_GLOBAL_SUNLOCK      1       /* For global locking */
148 #endif
149
150 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
151 #define AFS_SYSCALL             65
152
153 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
154 #define AFS_MOUNT_AFS    1
155
156 /* Machine / Operating system information */
157 #define sys_sun4x_59    1
158 #define SYS_NAME        "sun4x_59"
159 #define SYS_NAME_ID     SYS_NAME_ID_sun4x_59
160 #define AFSBIG_ENDIAN   1
161 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
162 #define AFS_HAVE_STATVFS      0 /* System doesn't support statvfs */
163
164 /* Extra kernel definitions (from kdefs file) */
165 #ifdef KERNEL
166 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
167 #define AFS_SYSVLOCK            1       /* sys v locking supported */
168 /*#define       AFS_USEBUFFERS  1*/
169 #define afsio_iov       uio_iov
170 #define afsio_iovcnt    uio_iovcnt
171 #define afsio_offset    uio_offset
172 #define afsio_seg       uio_segflg
173 #define afsio_fmode     uio_fmode
174 #define afsio_resid     uio_resid
175 #define AFS_UIOSYS      1
176 #define AFS_UIOUSER     UIO_USERSPACE
177 #define AFS_CLBYTES     MCLBYTES
178 #define AFS_MINCHANGE   2
179 #define VATTR_NULL      usr_vattr_null
180 #endif /* KERNEL */
181 #define AFS_DIRENT
182 #ifndef CMSERVERPREF
183 #define CMSERVERPREF
184 #endif
185 #define ROOTINO         UFSROOTINO
186
187 #endif /* AFS_PARAM_H */
188
189 #endif /* !defined(UKERNEL) */