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