9a82b8daf43087b92a7b94981b201c84b516d0ea
[openafs.git] / src / config / param.sgi_65.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_HH
14 #define AFS_PARAM_HH
15
16
17 #define AFS_VFS_ENV             1
18 #define AFS_VFSINCL_ENV         1
19 #define AFS_ENV                 1       /* NOBODY uses this.... */
20 #define CMUSTD_ENV              1       /* NOBODY uses this.... */
21 #define AFS_SGI_ENV             1
22 #define AFS_SGI51_ENV           1       /* Dist from 5.0.1 */
23 #define AFS_SGI52_ENV           1
24 #define AFS_SGI53_ENV           1
25 #define AFS_SGI61_ENV           1
26 #define AFS_SGI62_ENV           1
27 #define AFS_SGI63_ENV           1
28 #define AFS_SGI64_ENV           1
29 #define AFS_SGI65_ENV           1
30 #define AFS_SGI_EXMAG           1       /* use magic fields in extents for AFS extra fields */
31 /* AFS_SGI_SHORTSTACK not required since we have a 16K stack. */        
32
33 #define RXK_LISTENER_ENV        1       /* Use an rx listener daemon */
34 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
35
36 #define _ANSI_C_SOURCE          1       /* rx_user.h */
37
38 #define AFS_64BIT_ENV           1       /* Defines afs_int32 as int, not long. */
39 #define AFS_64BITPOINTER_ENV    1       /* pointers are 64 bits. */
40 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
41 #define AFS_HAVE_STATVFS        1       /* System supports statvfs */
42
43 #include <afs/afs_sysnames.h>
44
45 #define AFS_GLOBAL_SUNLOCK 1
46
47 #define AFS_PIOCTL      64+1000
48 #define AFS_SETPAG      65+1000
49 #define AFS_IOPEN       66+1000
50 #define AFS_ICREATE     67+1000
51 #define AFS_IREAD       68+1000
52 #define AFS_IWRITE      69+1000
53 #define AFS_IINC        70+1000
54 #define AFS_IDEC        71+1000
55 #define AFS_IOPEN64     72+1000 /* was never-used aux call. */
56 #define AFS_SYSCALL     73+1000
57
58 /* For the XFS fileserver */
59 #define AFS_SGI_XFS_IOPS_ENV    1 /* turns on XFS inode ops. */
60 #define AFS_64BIT_IOPS_ENV      1 /* inode ops expect 64 bit inodes */
61
62 /* Vnode size and access differs between Octane and Origin. The number
63  * can be used to indicate which altername vnodeX_t to use for future
64  * changes.
65  */
66 #ifdef notdef
67 /* SGI may have cleared this problem up. */
68 #define AFS_SGI_VNODE_GLUE      1
69 #endif
70
71
72 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
73 #define AFS_MOUNT_AFS    "afs"
74
75 /* Machine / Operating system information */
76 #define sys_sgi_65      1
77 #define SYS_NAME        "sgi_65"
78 #define SYS_NAME_ID     SYS_NAME_ID_sgi_65
79 #define AFSBIG_ENDIAN   1
80 #define AFS_VM_RDWR_ENV 1
81
82 /* Extra kernel definitions (from kdefs file) */
83 #ifdef KERNEL
84 #if _MIPS_SIM == _ABI64
85 #define _K64U64
86 #endif
87 /* definitions here */
88 #define AFS_VFS34               1       /* afs/afs_vfsops.c (afs_vget), afs/afs_vnodeops.c (afs_lockctl, afs_noop) */
89 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
90 #define AFS_SYSVLOCK            1       /* sys v locking supported */
91 /*#define       AFS_USEBUFFERS  1*/
92 #define afsio_iov               uio_iov
93 #define afsio_iovcnt    uio_iovcnt
94 #define afsio_offset    uio_offset
95 #define afsio_seg               uio_segflg
96 #define afsio_fmode     uio_fmode
97 #define afsio_resid     uio_resid
98 #define AFS_UIOSYS      UIO_SYSSPACE
99 #define AFS_UIOUSER     UIO_USERSPACE
100 #define AFS_CLBYTES     MCLBYTES
101 #define AFS_MINCHANGE   2
102 #ifdef _K64U64
103 #define osi_GetTime(x)  irix5_microtime((struct __irix5_timeval*)(x))
104 #else
105 #define osi_GetTime(x)  microtime(x)
106 #endif
107 #define AFS_KALLOC(n)   kmem_alloc(n, KM_SLEEP)
108 #define AFS_KALLOC_NOSLEEP(n)   kmem_alloc(n, KM_NOSLEEP)
109 #define AFS_KFREE       kmem_free
110 #define VATTR_NULL      vattr_null
111 /* #define      DEBUG           1 */
112
113 #define AFS_EVENT_LOCK  1 /* osi_Sleep/osi_Wakeup use spinlock. */
114 #define AFS_SGI_DUAL_FS_CACHE 1 /* implies supports EFS or XFS cache */
115
116 #define memset(A, B, S) bzero(A, S)
117 #define memcpy(B, A, S) bcopy(A, B, S)
118 #define memcmp(A, B, S) bcmp(A, B, S)
119
120 #endif /* KERNEL */
121
122 #ifndef CMSERVERPREF
123 #define CMSERVERPREF
124 #endif
125 #endif  /* AFS_PARAM_H */
126
127 #else /* !defined(UKERNEL) */
128
129 /* This section for user space compiles only */
130
131 /*
132  * Copyright 2000, International Business Machines Corporation and others.
133  * All Rights Reserved.
134  * 
135  * This software has been released under the terms of the IBM Public
136  * License.  For details, see the LICENSE file in the top-level source
137  * directory or online at http://www.openafs.org/dl/license10.html
138  */
139
140 #ifndef AFS_PARAM_H
141 #define AFS_PARAM_H
142
143 #define AFS_VFS_ENV     1
144 /* Used only in vfsck code; is it needed any more???? */
145 #define RXK_LISTENER_ENV        1
146 #define AFS_USERSPACE_IP_ADDR   1
147 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
148
149 #define UKERNEL                 1       /* user space kernel */
150 #define AFS_GREEDY43_ENV        1       /* Used only in rx/rx_user.c */
151 #define AFS_ENV                 1
152 #define AFS_USR_SGI_ENV         1
153 #define AFS_USR_SGI62_ENV       1
154 #define AFS_USR_SGI63_ENV       1
155 #define AFS_USR_SGI64_ENV       1
156 #define AFS_USR_SGI65_ENV       1
157
158 #include <afs/afs_sysnames.h>
159
160 /*#define AFS_GLOBAL_SUNLOCK    1*/     /* For global locking */
161
162 #define AFS_3DISPARES           1       /* Utilize the 3 available disk inode 'spares' */
163
164 #define AFS_PIOCTL    64+1000
165 #define AFS_SYSCALL   73+1000
166
167 /* File system entry (used if mount.h doesn't define MOUNT_AFS */
168 #define AFS_MOUNT_AFS    1
169
170 /* Machine / Operating system information */
171 #define sgi_65          1
172 #define SYS_NAME        "sgi_65"
173 #define SYS_NAME_ID     SYS_NAME_ID_sgi_65
174 #define AFSBIG_ENDIAN   1
175 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
176 #define AFS_HAVE_STATVFS        0       /* System doesn't support statvfs */
177
178 /* Extra kernel definitions (from kdefs file) */
179 #ifdef KERNEL
180 #define AFS_UIOFMODE            1       /* Only in afs/afs_vnodeops.c (afs_ustrategy) */
181 #define AFS_SYSVLOCK            1       /* sys v locking supported */
182 /*#define       AFS_USEBUFFERS  1*/
183 #define afsio_iov       uio_iov
184 #define afsio_iovcnt    uio_iovcnt
185 #define afsio_offset    uio_offset
186 #define afsio_seg       uio_segflg
187 #define afsio_fmode     uio_fmode
188 #define afsio_resid     uio_resid
189 #define AFS_UIOSYS      1
190 #define AFS_UIOUSER     UIO_USERSPACE
191 #define AFS_CLBYTES     MCLBYTES
192 #define AFS_MINCHANGE   2
193 #define VATTR_NULL      usr_vattr_null
194 #endif /* KERNEL */
195 #define AFS_DIRENT      
196 #ifndef CMSERVERPREF
197 #define CMSERVERPREF
198 #endif
199 #define ROOTINO         UFSROOTINO
200
201 #endif /* AFS_PARAM_H */
202
203 #endif /* !defined(UKERNEL) */