Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / config / param.sunx86_510.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_SUN59_ENV 1
25 #define AFS_SUN510_ENV 1
26 #define AFS_X86_ENV 1
27
28 #define AFS_64BIT_CLIENT 1
29
30 #define AFS_HAVE_FLOCK_SYSID 1
31
32 #define AFS_CACHE_VNODE_PATH 1
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 #ifdef AFS_NAMEI_ENV
41 #define AFS_64BIT_IOPS_ENV 1 /* needed for NAMEI... */
42 #else /* AFS_NAMEI_ENV */
43 #define AFS_3DISPARES 1 /* Utilize the 3 available disk inode 'spares' */
44 #endif /* AFS_NAMEI_ENV */
45
46 #define AFS_SYSCALL 65
47
48 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
49 #define AFS_MOUNT_AFS "afs"
50
51 /* Machine / Operating system information */
52 #define sys_sunx86_510 1
53 #define SYS_NAME "sunx86_510"
54 #define SYS_NAME_ID SYS_NAME_ID_sunx86_510
55 #define AFSLITTLE_ENDIAN 1
56 #define AFS_HAVE_FFS 1 /* Use system's ffs. */
57 #define AFS_HAVE_VXFS 1 /* Support cache on Veritas vxfs file system */
58 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */
59 #define AFS_HAVE_STATVFS64 1 /* System supports statvfs64 */
60 #define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */
61 #define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */
62
63 #define NEARINODE_HINT 1 /* hint to ufs module to scatter inodes on disk */
64 #define nearInodeHash(volid, hval) { \
65 unsigned char* ts = (unsigned char*)&(volid)+sizeof(volid)-1;\
66 for ( (hval)=0; ts >= (unsigned char*)&(volid); ts--){\
67 (hval) *= 173; \
68 (hval) += *ts; \
69 } \
70 }
71
72 /* Extra kernel definitions (from kdefs file) */
73 #ifdef KERNEL
74 /* sun definitions here */
75 #define AFS_UIOFMODE 1 /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
76 #define AFS_SYSVLOCK 1 /* sys v locking supported */
77 #define afsio_iov uio_iov
78 #define afsio_iovcnt uio_iovcnt
79 #define afsio_offset uio_loffset
80 #define afsio_seg uio_segflg
81 #define afsio_fmode uio_fmode
82 #define afsio_resid uio_resid
83 #define AFS_UIOSYS UIO_SYSSPACE
84 #define AFS_UIOUSER UIO_USERSPACE
85 #define AFS_CLBYTES MCLBYTES
86 #define AFS_MINCHANGE 2
87 #define osi_GetTime(x) uniqtime32(x)
88
89 /**
90 * These defines are for the 64 bit Solaris 7 port
91 * AFS_SYSCALL32 is used to protect the ILP32 syscall interface
92 */
93 #if defined(__amd64)
94 #define AFS_SUN5_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 #include <afs/afs_sysnames.h>
134
135 #if 0
136 #define AFS_GLOBAL_SUNLOCK 1 /* For global locking */
137 #endif
138
139 #define AFS_3DISPARES 1 /* Utilize the 3 available disk inode 'spares' */
140 #define AFS_SYSCALL 65
141
142 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
143 #define AFS_MOUNT_AFS 1
144
145 /* Machine / Operating system information */
146 #define sys_sunx86_510 1
147 #define SYS_NAME "sunx86_510"
148 #define SYS_NAME_ID SYS_NAME_ID_sunx86_510
149 #define AFSLITTLE_ENDIAN 1
150 #define AFS_HAVE_FFS 1 /* Use system's ffs. */
151 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */
152 #define AFS_HAVE_STATVFS64 1 /* System supports statvfs64 */
153
154 /* Extra kernel definitions (from kdefs file) */
155 #ifdef KERNEL
156 #define AFS_UIOFMODE 1 /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
157 #define AFS_SYSVLOCK 1 /* sys v locking supported */
158 #define afsio_iov uio_iov
159 #define afsio_iovcnt uio_iovcnt
160 #define afsio_offset uio_offset
161 #define afsio_seg uio_segflg
162 #define afsio_fmode uio_fmode
163 #define afsio_resid uio_resid
164 #define AFS_UIOSYS 1
165 #define AFS_UIOUSER UIO_USERSPACE
166 #define AFS_CLBYTES MCLBYTES
167 #define AFS_MINCHANGE 2
168 #define VATTR_NULL usr_vattr_null
169 #endif /* KERNEL */
170 #define AFS_DIRENT
171 #ifndef CMSERVERPREF
172 #define CMSERVERPREF
173 #endif
174 #define ROOTINO UFSROOTINO
175
176 #endif /* AFS_PARAM_H */
177
178 #endif /* !defined(UKERNEL) */