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