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