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